Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-08-03 | st/mesa: we don't support GL_NV_point_sprite (see comment) | Brian Paul | |
2009-07-30 | mesa: move misplaced return statement | Brian Paul | |
Fixes regression from commit 7d93f817c9c5222e2bdbaa9fa9f03fc502bfe878 | |||
2009-07-30 | mesa: add missing return after catching program error | Brian Paul | |
2009-07-29 | mesa/st: short-circuit glFinish calls on WIN32 only | Keith Whitwell | |
Windows opengl32.dll calls glFinish prior to every swapbuffers, which makes it pretty hard to get decent performance... Work around by mapping finish to flush on PIPE_OS_WINDOWS. This is conformant, though it might confuse poorly-written benchmarks which attempt to measure a single event rather than figuring out the rate of continuous processing. | |||
2009-07-29 | mesa/st: recognize no-op scissor state when checking clear_with_quads | Keith Whitwell | |
Some apps enable scissor but set the rectangle to the dimensions of the window. Don't let this force us onto a slower clear path. | |||
2009-07-29 | util: _debug_printf should print even when DEBUG is not defined | Keith Whitwell | |
The leading underscore is meaningful... This function is used by _warning and _error functions as well as the more common debug_printf(). debug_printf (without underscore) gets turned off when DEBUG is disabled, but warning/error messages still use this function to get their message out. (cherry picked from commit 0ac879dca797360570543d5bd0fd64f8fb8e566e) | |||
2009-07-28 | glx: assign per screen driver configs (DRISW) | RALOVICH, Kristóf | |
2009-07-28 | glx: assign per screen driver configs (DRI) | RALOVICH, Kristóf | |
2009-07-28 | glx: assign per screen driver configs (DRI2) | RALOVICH, Kristóf | |
2009-07-28 | glx: properly release DRI configs | RALOVICH, Kristóf | |
Release per screen DRI driver configs during screen destruction. | |||
2009-07-28 | glx: cache DRI configs in __GLXscreenConfigsRec | RALOVICH, Kristóf | |
2009-07-27 | intel: Fix leak of DRI option info due to using the wrong free routine. | Brian Paul | |
(cherry picked from commit 6d66f23c50ebe8f973757b6fd1b81c9b7920c447) | |||
2009-07-27 | intel: Clean up leak of driver context structure on context destroy. | Brian Paul | |
(cherry picked from commit ddef7dc87b2001fbe117ee5f24a0c645ee95a03c) | |||
2009-07-27 | st/mesa: silence warning | Brian Paul | |
2009-07-27 | mesa: separate some finite/pragma Watcom stuff | Brian Paul | |
2009-07-27 | softpipe: include sp_winsys.h to silence function prototype warning | Brian Paul | |
2009-07-27 | intel: Use _mesa_warning() to report GEM warnings | Brian Paul | |
2009-07-27 | windows: updated VC8 project files | Karl Schultz | |
See bug 22882. | |||
2009-07-26 | util: fix typo. | José Fonseca | |
2009-07-22 | mesa: bump version to 7.5.1 | Brian Paul | |
2009-07-20 | intel: Fall back on glBitmap with fog enabled. | Eric Anholt | |
We would have to build the program with the appropriate fog mode, and also supply the fog coordinate if appropriate. Bug #19413. (cherry picked from commit 8ae02a3919bf31bd33f86208472e100eedb58497) | |||
2009-07-20 | i965: Don't clip everything if FRONT_AND_BACK culling while culling disabled. | Eric Anholt | |
Fixes everything-black with meta_clear_tris on quake4-mpdemo and doom3-demo. Bug #18844, 22077. (cherry picked from commit 81d555068408d4343d7627c8bedda5675f09bd21) | |||
2009-07-20 | radeon: With DRI1, if we have HW stencil, only expose fbconfigs with stencil. | Michel Dänzer | |
Otherwise simple apps like glxgears pick up a DirectColor visual since the X server mixes the depth 32 visual in with the other GLX visuals, and this seems to result in a (mostly) black screen due to a bad ColorMap for a lot of people. The bad ColorMap may be a bug in the apps, the X server or X driver, and regardless of that I think the X server should ideally make the depth 32 GLX visual separate from the rest again, but in the meantime this makes us cope. (depth_bits is either 16 or 24, never 0) | |||
2009-07-17 | mesa: set version to 7.5 | Brian Paul | |
2009-07-16 | python/retrace: Process the call no passed to --to option inclusively. | José Fonseca | |
2009-07-16 | python/retrace: Dump the surface copy contents. | José Fonseca | |
2009-07-16 | python/retrace: Flush stdout before calling the pipe driver. | José Fonseca | |
So that messages are in sync with stderr. | |||
2009-07-16 | mesa: Fix logbase2. | José Fonseca | |
It was providing 1 too many for non power two values. | |||
2009-07-16 | python: Hack to prevent segmentation faults when python exits. | José Fonseca | |
2009-07-16 | wgl: Expose pipe_screen/pipe_context via an extension. | José Fonseca | |
2009-07-16 | python: Obtain pipe_screen/pipe_context from the system's OpenGL driver. | José Fonseca | |
2009-07-15 | softpipe: limit blend results to [0,1] | Luca Barbieri | |
2009-07-15 | Fix state flag dependencies for fixed function fragment program updates. | Brian Paul | |
I started looking into why _NEW_ARRAY punishes us, and while annotating dependencies noticed that a bunch of dependencies were missing. (cherry picked from master, commit e5f63c403b767f9974e8eb5d412c012b8a69287f) | |||
2009-07-15 | python/retrace: Interpret surface_copy. | José Fonseca | |
2009-07-15 | python/samples: Use PIPE_FORMAT_Z16_UNORM instead of PIPE_FORMAT_Z32_UNORM. | José Fonseca | |
More common. True fix would be to use whatever the screen supports though. | |||
2009-07-15 | mesa: recognize and eliminate repeated error messages | Keith Whitwell | |
2009-07-15 | mesa: split out errorstring switch from _mesa_error | Keith Whitwell | |
Move a chunk of code out of _mesa_error() | |||
2009-07-15 | mesa: remove dead code in _mesa_error | Keith Whitwell | |
Remove early and unused snprintf and where[] string. | |||
2009-07-15 | mesa: don't call getenv every time _mesa_error is called | Keith Whitwell | |
Buggy apps can generate thousands of mesa_error calls. Don't need to keep calling getenv to retreive the same MESA_DEBUG string each time. | |||
2009-07-14 | mesa: fix texture border color code for glPopAttrib() | Brian Paul | |
The texture object's border color used to be stored as GLchan but it's been GLfloat for a while now. | |||
2009-07-14 | mesa: regenerated enums.c file | Brian Paul | |
2009-07-14 | mesa: Report the true face number when flushing. | José Fonseca | |
2009-07-13 | r128: fix two-sided lighting segfault seen in GLUT's olight demo | Peteri Andras | |
2009-07-12 | intel: Bump driver data, add RC3 tag | Ian Romanick | |
2009-07-11 | gallium: compare the actual register, not all the inputs | Zack Rusin | |
otherwise we decrement indexes for all registers | |||
2009-07-10 | tgsi: update some assertions | Brian Paul | |
2009-07-10 | tgsi: tgsi: add semantic_names[] string for TGSI_SEMANTIC_FACE | Brian Paul | |
Same story as in the tgsi_dump.c code (see prev commit). | |||
2009-07-10 | tgsi: add semantic_names[] string for TGSI_SEMANTIC_FACE | Brian Paul | |
Fixes TGSI dump output when front/back-face register is declared. Also, add some assertions to make sure the semantic/interpolate string arrays have as many elements as there are tokens in the p_shader_tokens.h file. That should catch problems like this in the future. | |||
2009-07-10 | st/mesa: implement indirect addressing for destination registers | Brian Paul | |
2009-07-10 | tgis: implement indirect addressing for destination registers | Brian Paul | |
Includes the TGSI interpreter, but not the SSE/PPC/etc code generators. |