Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-07-23 | mesa: include glew headers in MesaDemos tarballs | Brian Paul | |
2009-07-22 | docs: initial release notes for 7.5.1 | Brian Paul | |
2009-07-22 | mesa: bump version to 7.5.1 | Brian Paul | |
2009-07-22 | mesa: include GLEW sources in MesaDemos tarball | 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 | progs/util: remove extfuncs.h (we use GLEW instead) | Brian Paul | |
2009-07-17 | progs/glsl: finish conversion to GLEW | Brian Paul | |
This is a follow-on to b799af91d5ffbee1481161fec29eb4c92b161272. Remove _func function suffix and unneeded #includes. | |||
2009-07-17 | mesa: set version to 7.5 | Brian Paul | |
2009-07-17 | mesa: set version to 7.5 | Brian Paul | |
2009-07-17 | docs: set date for 7.5 release | Brian Paul | |
2009-07-17 | docs: news entry for 7.5 release | Brian Paul | |
2009-07-17 | docs: update links to Gallium wiki page on freedesktop.org | 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 | progs/tests: Use compressed texture in mipmap_comp_tests | Jakob Bornecrantz | |
2009-07-14 | progs/tests: Tests more views in mipmap_comp_tests | Jakob Bornecrantz | |
2009-07-14 | progs/tests: Add yet another mipmap test | Jakob Bornecrantz | |
2009-07-14 | mesa: regenerated enums.c file | Brian Paul | |
2009-07-14 | scons: Monkey patch os.spawnve on Windows to become thread safe. | José Fonseca | |
See also: - http://bugs.python.org/issue6476 - http://scons.tigris.org/issues/show_bug.cgi?id=2449 | |||
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. | |||
2009-07-10 | vbo: fix vbo/dlist memory leak | Brian Paul | |
Based on a patch by kristof.ralovich@gmail.com | |||
2009-07-10 | demos: set 4th component of texcoord to 1.0 | Brian Paul | |
Avoid potential randomness in resulting texcoords. | |||
2009-07-10 | Remove stale reference to non-Gallium nouveau driver from configure.ac. | Michel Dänzer | |
2009-07-09 | mesa: From float type modifier from values to large for singles | Ian Romanick | |
The values 2147483648.0 and 4294967294.0 are too larget to be stored in single precision floats. Forcing these to be singles causes bits to be lost, which results in errors in some pixel transfer tests. This fixes bug #22344. (cherry picked from commit 70e72070fce6aa1e0918dcc62c1949465cee69f7) | |||
2009-07-09 | docs: document gl_TextureMatrix[i][j] array indexing bug fix | Brian Paul | |
2009-07-09 | glsl: do const parameter optimization for array element actual parameters | Brian Paul | |
When a function parameter is const-qualified we can avoid making a copy of the actual parameter (we basically do a search/replace when inlining). This is now done for array element params too, resulting in better code (fewer MOV instructions). We should allow some other types of function arguments here but let's be conservative for the moment. |