Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-12-30 | util: Add forward declarations in u_index_modify.h. | Vinson Lee | |
2010-12-30 | tgsi: Clean up header file inclusion in tgsi_text.h. | Vinson Lee | |
2010-12-30 | graw: Include p_shader_tokens.h for tgsi_token struct. | Vinson Lee | |
2010-12-30 | tgsi: Clean up header file inclusion in tgsi_sanity.h. | Vinson Lee | |
2010-12-29 | util: add a way to store translated indices to a user memory in u_index_modify | Marek Olšák | |
I am about to use the upload buffer in r300g instead. | |||
2010-12-29 | r300g: support user buffers as constant buffers | Marek Olšák | |
2010-12-28 | tgsi_dump: fix assert due to missing property name. | Dave Airlie | |
2010-12-28 | r300g: rename aos to vertex arrays | Marek Olšák | |
2010-12-28 | r300g: mark vertex arrays as dirty after a buffer_offset change | Marek Olšák | |
We shouldn't hit this bug in theory. NOTE: This is a candidate for the 7.10 branch. | |||
2010-12-16 | svga, glhd: Remove incorrect assert and add note | Jakob Bornecrantz | |
Stride can be lower then the size of the attribute. But should probably be aligned to component size atleast for floats. | |||
2010-12-16 | svga: Minor debug text fix | Jakob Bornecrantz | |
2010-12-16 | svga: Remove debug print in winsys | Jakob Bornecrantz | |
2010-12-16 | svga: Correct spelling in swtnl backend | Jakob Bornecrantz | |
2010-12-16 | svga: Fix newline at EOF | Jakob Bornecrantz | |
2010-12-16 | svga: Add Galahad and Softpipe to scons build | Jakob Bornecrantz | |
2010-12-16 | wrapper: Flush pipe on unmap | Jakob Bornecrantz | |
For drivers that does DMA transfers instead of mapping directly | |||
2010-12-16 | wrapper: Fix width and height given to map and remove uneeded fields | Jakob Bornecrantz | |
2010-12-27 | i915g: Ignore color0 writes all cbufs tgsi property | Jakob Bornecrantz | |
2010-12-26 | st/egl: Fix eglChooseConfig when configs is NULL. | Chia-I Wu | |
When configs is NULL, the app wants to know the number of matching configs. | |||
2010-12-25 | nvfx: Remove unused variable. | Vinson Lee | |
Fixes this GCC warning. nvfx_vbo.c: In function 'nvfx_idxbuf_emit': nvfx_vbo.c:410: warning: unused variable 'eng3d' | |||
2010-12-25 | nvfx: restore BEGIN_RING usage | Xavier Chantry | |
Michel Hermier reported libdrm segfault (and kernel crash) on nv40 using gallium : http://www.mail-archive.com/nouveau@lists.freedesktop.org/msg06563.html It turns out these were caused by some missing WAIT_RING (or wrong computation of the WAIT_RING sizes). Unlike all other libdrm_nouveau users, nvfx gallium tried to use a mininum calls of WAIT_RING, one WAIT_RING could apply to many methods for different code paths and spread across several functions. This made it too tricky to find out what the missing or wrong WAIT_RING was. By restoring BEGIN_RING, we force one WAIT_RING per method, and it's much easier to check if the free size required in the pushbuffer is correct. As curro said, "let's keep it simple for the maintainers until the big bottlenecks are gone" Benchmarked on nv35 with openarena, nexuiz and ut2004 and no performance regression. The core of this patch was made with Coccinelle, with minor manual fixes made on top. Tested-by: Michel Hermier <hermier@frugalware.org> Signed-off-by: Francisco Jerez <currojerez@riseup.net> | |||
2010-12-25 | r300g: simplify buffer_transfer_inline_write | Marek Olšák | |
2010-12-25 | r300g: simplify the code for buffer uploads | Marek Olšák | |
2010-12-25 | r300g: user index buffers are always aligned | Marek Olšák | |
2010-12-25 | r300g: increase the size of upload buffers | Marek Olšák | |
2010-12-24 | r300g/swtcl: re-enable LLVM | Marek Olšák | |
Based on a patch from Drill <drill87@gmail.com>. NOTE: This is a candidate for the 7.10 branch. | |||
2010-12-24 | r600g: r600_blit_uncompress_depth() can't fail. | Henri Verbeet | |
2010-12-24 | r600g: Get rid of r600_blit_uncompress_depth_ptr. | Henri Verbeet | |
2010-12-24 | r600g: hack around property unknown issues. | Dave Airlie | |
should fix https://bugs.freedesktop.org/show_bug.cgi?id=32619 Need to add proper support for properties later. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-12-24 | r300g: turn back on rv530 hiz. | Dave Airlie | |
still needs RADEON_HYPERZ=y env var. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-12-24 | r300g: hyperz fixing typo. | Dave Airlie | |
Really no idea why I didn't see this before, but these values were opposite the register spec. this seems to fix rv530 HiZ on my laptop, will reenable in next commit. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-12-23 | r600g: Rearrange print order of outputs of R600_ERR. | Vinson Lee | |
2010-12-23 | st/egl: Remove unnecessary header. | Vinson Lee | |
2010-12-23 | libgl-xlib: Remove unnecessary header. | Vinson Lee | |
2010-12-23 | r300g: Remove unnecessary header. | Vinson Lee | |
2010-12-24 | tgsi_text: just parse as an integer (value is a boolean). | Dave Airlie | |
fixes warning reported by vlee on irc. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-12-24 | r300g: add support for color0 writes to all bound color buffers. | Dave Airlie | |
Thanks to Marek Olšák for making my initial attempt actually work. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-12-24 | softpipe: add support for color writes all color bufs property | Dave Airlie | |
2010-12-24 | gallium: add fragment shader property for color writes to all buffers. (v2) | Dave Airlie | |
For GL fragColor semantics we need to tell the pipe drivers that the fragment shader color result is to be replicated to all bound color buffers, this adds the basic TGSI + documentation. v2: fix missing comma pointed out by Tilman on mesa-dev. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-12-23 | r300g: use a simpler fallback for misaligned ushort indices with triangles | Marek Olšák | |
If 'start' is odd, render the first triangle with indices embedded in the command stream, which adds 3 to 'start' and makes it even. Then continue with the fast path. | |||
2010-12-23 | r300g: add support for B2G3R3 texturing | Marek Olšák | |
2010-12-23 | gallium: add new formats L16A16_UNORM, A16_UNORM, I16_UNORM, B2G3R3_UNORM | Marek Olšák | |
2010-12-22 | gallivm: Disable MMX-disabling code on llvm-2.9. | Vinson Lee | |
The disable-mmx option was removed in llvm-2.9svn by revisions 122188 and 122189. Fixes FDO bug 32564. | |||
2010-12-22 | gallivm: Fix 'cast from pointer to integer of different size' warning. | Vinson Lee | |
Fixes this GCC warning. lp_bld_const.h: In function 'lp_build_const_int_pointer': lp_bld_const.h:137: warning: cast from pointer to integer of different size | |||
2010-12-22 | i915g: Remove unnecessary header. | Vinson Lee | |
2010-12-22 | llvmpipe: Remove unnecessary headers. | Vinson Lee | |
2010-12-22 | r300g: Remove unnecessary headers. | Vinson Lee | |
2010-12-22 | svga: Remove unnecessary header. | Vinson Lee | |
2010-12-22 | st/vega: Remove unnecessary headers. | Vinson Lee | |
2010-12-22 | r600g: Remove the unused "pframebuffer" field from r600_pipe_context. | Henri Verbeet | |