summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-09-23Merge branch 'softpipe-opt'Keith Whitwell
Conflicts: progs/demos/cubemap.c src/gallium/drivers/softpipe/sp_tex_sample.c src/gallium/drivers/softpipe/sp_texture.c
2009-09-23gallium/include: update some commentsKeith Whitwell
2009-09-23st/xorg: fix a typoZack Rusin
it'd be too easy, eh
2009-09-23st/xorg: keep the user buffer contents aroundZack Rusin
Michel noticed that they were getting out of scope
2009-09-23progs/perf: set TexSubImage4=FALSEBrian Paul
2009-09-23wgl: Eliminate the shared layer; implement WGL API on top of the ICD callbacks.José Fonseca
While the WGL API has been stale for decades now, the ICD interface has been updated with new Windows versions, so it is much easier to define everything in terms of the ICD interfaces, which is pretty much what Microsoft's opengl32.dll does anyway.
2009-09-23gdi: Update for WGL statetracker source reorg.José Fonseca
2009-09-23wgl: Flatten the source tree.José Fonseca
It is easier to have the WGL API on top of the ICD callbacks as Microsoft's own implementation does, than to have a seperate shared entity. This source reorganization is in antecipation of that.
2009-09-23wgl: Fix debug_printf format specifiers.José Fonseca
2009-09-23gallium: Update vendor string.José Fonseca
2009-09-22softpipe: fix bugs in POT texture sampling when texture is not squareroot
Before, if level was greater than the logbase2(base size) we were doing a negative bit shift and winding up with garbage values.
2009-09-22softpipe: additional assertionsBrian Paul
2009-09-22softpipe: disable a _debug_printf()Brian Paul
2009-09-22Merge branch 'mesa_7_6_branch'Brian Paul
2009-09-22mesa: don't re-use the meta glDrawPixels VBO; create a new one each timeBrian Paul
This should help to work around bugs 24083 and 23670.
2009-09-22progs/perf: added glCopyTex[Sub]Image2D testBrian Paul
2009-09-22r600 : add draw_prim support, make up one lost change.Richard Li
2009-09-22r600 : add draw_prim support.Richard Li
2009-09-22mesa: fix more buffer object error messagesBrian Paul
2009-09-22softpipe: need to write depth/stencil values even when stencil failsKeith Whitwell
2009-09-22softpipe: set quad->facing valueKeith Whitwell
2009-09-22Merge branch 'mesa_7_5_branch' into mesa_7_6_branchBrian Paul
Conflicts: src/mesa/main/bufferobj.c
2009-09-22glx: include string.h to silence missing memset() prototype warningBrian Paul
2009-09-22mesa: fix error message textBrian Paul
2009-09-22r300: Fix crash reported in bug #24066Nicolai Hähnle
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com>
2009-09-22softpipe: fix polygon stippleKeith Whitwell
2009-09-22progs/perf: test glGetTexImage() alsoBrian Paul
2009-09-22softpipe: fix occlusion countingKeith Whitwell
2009-09-22st/xorg: Fix two leeksJakob Bornecrantz
We where leaking both surfaces in the composit code and textures from pixmaps.
2009-09-22i915g: Activate traceJakob Bornecrantz
2009-09-22i915g: Do propper references of surfaces in contextJakob Bornecrantz
2009-09-22progs/perf: add missing texture enable in fbobind.cBrian Paul
2009-09-22progs/perf: added fbobind.c test to test FBO binding speedBrian Paul
2009-09-22progs/perf: added PerfExtensionSupported() helperBrian Paul
2009-09-22teximage: add more tests, image formatsKeith Whitwell
Add a test which creates a new texture from scratch before uploading. Add more image formats. Don't run all tests on all image formats.
2009-09-22progs/perf: add another VBO test for Create/Draw/Destroy patternBrian Paul
Report both MB/sec and draw/sec.
2009-09-22progs/perf: simplify the codeBrian Paul
2009-09-22progs/perf: fix commentBrian Paul
2009-09-22progs/perf: updated commentsBrian Paul
2009-09-22progs/perf: make teximage results easier to read, more reproducibleKeith Whitwell
Always run the same tests on different drivers, give zero results where test image is too big for driver. Add a newline between groups of tests.
2009-09-22progs/perf: reset row_length after subimage testKeith Whitwell
Also test fewer sizes in teximage generally.
2009-09-22progs/perf: clean up swapbuffers test a bitKeith Whitwell
2009-09-22progs/perf: break up long runs of fullscreen quadsKeith Whitwell
Not all drivers cope gracefully with command-buffers with zillions of fullscreen quads.
2009-09-22progs/perf: add first attempt at a swapbuffers rate testKeith Whitwell
This is pretty ugly as the original framework assumed you'd set a single window size at startup and keep it throughout, but for swapbuffers you want to test the rate at various window sizes. With luck a nicer solution can be found, but this at least lays out a marker.
2009-09-21vbo: added comment about max array indexBrian Paul
2009-09-21vbo: restore some lost warning outputBrian Paul
2009-09-21GLX: Warn only once about applications calling GLX 1.3 functionsTormod Volden
The warnings introduced in 1f309c40b8065b8729fce631540c66e4b50b84df would pour out generously from some applications. This patch adds a "warn once" wrapper macro, heavily inspired by src/mesa/drivers/dri/r600/radeon_debug.h Signed-off-by: Tormod Volden <debian.tormod@gmail.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
2009-09-21vbo: disable the GL_ARB_draw_elements_base_vertex rebase pathBrian Paul
This was introduced with commit 92d7ed8a20d4a018ce5324e6537ae7b478b9e5bf. It causes rendering of stray polygons (with sw rendering at least) when running the OGL Distilled / Picking demo (click on an object). This needs additional debugging to fix/restore. Found one suspect thing: in _tnl_draw_prims() there's some mixed signed/ unsigned arithmetic/comparing at line 422 that may be incorrect.
2009-09-21selinux: Fix mmap() return value checkAdam Jackson
2009-09-21mesa: refine the error checking vbo_exec_DrawRangeElements()Brian Paul
If the 'end' index is out of bounds issue a warning as before. But instead of just no-op'ing the draw call, examine the actual array indices to see if they're OK. If the max array index is out of bounds, issue another warning and no-op the draw call. Otherwise, draw normally. This is a debug build-only feature since it could impact performance. This "fixes" the missing torus in the OGL Distilled / Picking demo.