summaryrefslogtreecommitdiff
path: root/src/gallium
AgeCommit message (Collapse)Author
2009-10-14r300g: Compiler warning cleanup.Corbin Simpson
2009-10-14r300g: remove buffer add that should be unnecessary.Dave Airlie
This should be handled in the emit fine
2009-10-14r300g: add QUERY to KITCHEN_SINKDave Airlie
I missed this, thanks to Corbin for pointing it out.
2009-10-14r300g: add one more ZTOP disable bit.Dave Airlie
Still missing the frag uses kill support, hopefully nha can point that out.
2009-10-14r300g: port over last parts of oq support.Dave Airlie
Add support for begin/end in each CS so we don't get any other processes rendering in between. TODO: blame other parts of driver for this not working like Z.
2009-10-14r300g: convert query to a state for emitting.Dave Airlie
This means we don't emit in the begin query but when we have to flush. Similiar to classic. TODO: make query object actually work.
2009-10-14r300g: fixup arb occulsion query support.Dave Airlie
1: add rv530 support - num z pipes cap - add proper start/finish query options for rv530 2: convert to use linked list properly. 3: add flushing required check. 4: initial Z top disabling support. TODO: make it actually work on my rv530.
2009-10-14r300g: attempt to make bo space check sane.Dave Airlie
This attempts to make r300g do proper bo space checking as opposed to whatever it was doing now. Signed-off-by: Dave Airlie <airlied@redhat.com>
2009-10-14r300g: fix case where texture unit 0 is disabled but unit 1 is enabled.Dave Airlie
to reproduce, start texrect, disable 0 texture in menu. Signed-off-by: Dave Airlie <airlied@redhat.com>
2009-10-13nouveau: nv30: use texture width,height for render target dimensionsPatrice Mandin
2009-10-13st/xorg: solid fills with masks are supportedZack Rusin
gradients are supported, but not enabled by default due to little testing they got
2009-10-13st/xorg: fix and enable by default xrender accelerationZack Rusin
src in mask was broken
2009-10-12r300g: More debug flags.Corbin Simpson
2009-10-12r300g: Surface debug.Corbin Simpson
It gets really annoying watching r300g tell me how it's filling surfaces. Or falling back during filling surfaces.
2009-10-12r300g: Fallback on surfaces we can't render to or from.Corbin Simpson
Still not sure why st keeps handing down things we can't render to.
2009-10-12r300g: Prevent multiple-use textures from getting incorrectly approved.Corbin Simpson
2009-10-12r300g: Clean up texture formats.Corbin Simpson
2009-10-12Add support for more 8 and 16 bits formatsPatrice Mandin
2009-10-11st/xorg: initialize pipe in the rendererZack Rusin
2009-10-11st/xorg: lots of rendering and xv changesZack Rusin
extract all the rendering code to xorg_rendedrer, make both exa and xv share that code. in the process cleanup the rendering code and implement a lot more of the xv infrastructure.
2009-10-11configs: fix some remains of the i915simple driverZack Rusin
2009-10-11st/xorg: implement basics of xvZack Rusin
2009-10-11r300g: Fix fragment program constants upload on R300Nicolai Hähnle
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com>
2009-10-11r300g: fix blending default state + alpha separate.Dave Airlie
this makes the default state same as r300
2009-10-10Merge branch 'mesa_7_6_branch'Brian Paul
2009-10-10softpipe: fix multi-drawbuffers regressionBrian Paul
This is part of the fix for bug 24401.
2009-10-10softpipe: revert 564df9dc5f6335eb8dc68f3c69cf054d2142663cBrian Paul
This change silenced valgrind warnings but broke progs/tests/drawbuffers. The problem is we don't know the surface's state when we start caching it (it may or may not be initialized/cleared/etc). So "clearing" it here was presumptuous. Leaving the code in place (but disabled) for reference and when using valgrind. Fixes bug 24401
2009-10-10r300g: add video surface create and destroy functionsCooper Yuan
2009-10-08st/xorg: Old X servers don't deal well with failing accessesJakob Bornecrantz
2009-10-08st/xorg: More fallback debuggingJakob Bornecrantz
Change the fallback debugging around a bit and do the old commit correctly
2009-10-08Revert "st/xorg: Debug fallbacks for composite as well"Jakob Bornecrantz
This commit included a change that should have been in its own commit, and turns out that you can do what was suposed to go in it in much better way as well. This reverts commit 5080e8bea6ae5cdb116023a5e2d8dbbb762bd69d.
2009-10-08st/xorg: Debug fallbacks for composite as wellJakob Bornecrantz
2009-10-08st/xorg: Use A8 textures for depth 8 pixmapsJakob Bornecrantz
There is no hardware out there that can render to I8 textures.
2009-10-08st/xorg: Fix depth stencil buffers on old X serversJakob Bornecrantz
Sanity checking is for the weak.
2009-10-09softpipe: restore/fix print_vertex() debug helperBrian Paul
2009-10-09util: Force ESI register for cpuid's ebx result.José Fonseca
Fixes a segfault and better code. Unfortunately using an arbitrary register ("=r") causes the gcc to abort when the code is optimized saying it can't satisfy the constraint. Setting seems to do the trick.
2009-10-09llvmpipe: Eliminate constant mapping/unmapping.José Fonseca
2009-10-09gdi: Fix the build when llvmpipe is requested (the default) but llvm is not ↵José Fonseca
present.
2009-10-08Merge branch 'mesa_7_6_branch'Brian Paul
Conflicts: src/mesa/drivers/common/meta.c
2009-10-07gallium/xlib: call XQueryExtension() in glXQueryExtension()Brian Paul
See bug 24321.
2009-10-07i915g: Fix MSVC build.Vinson Lee
2009-10-07softpipe: new commentsBrian Paul
2009-10-07softpipe: whitespace and comment fixesBrian Paul
2009-10-07softpipe: prefix non-static functions with sp_Brian Paul
2009-10-07Merge branch 'master' into r300g-glslNicolai Hähnle
Conflicts: src/gallium/drivers/r300/r300_tgsi_to_rc.c Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com>
2009-10-07Merge branch 'mesa_7_6_branch'Nicolai Hähnle
2009-10-07util: do some more util_blit_pixels cases without temporariesKeith Whitwell
When the source surface is pointing at a 2d texture with only one mipmap level, use that directly rather than creating a temporary. Probably want to cover more cases, but this is a start.
2009-10-07gallium/xlib: fix glXQueryDrawable() bugs, see bug 24320Brian Paul
2009-10-07st/dri: Add missing front buffer case in dri_get_buffers().Michel Dänzer
This seems to help for compiz at least with some drivers. Also add an assert(0) to catch unhandled cases in the future.
2009-10-07gallium/xlib: return 0 for errorBase, eventBase in glXQueryExtension()Brian Paul
A little better than leaving the values undefined, I think. See bug 24321.