Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-31 | mesa: Use a consistent name of the external s3tc library for all windows ↵ | José Fonseca | |
compilers. | |||
2010-03-30 | mesa: added glGet queries for transform_feedback | Brian Paul | |
2010-03-30 | mesa: added glEnable/Disable state for transform feedback | Brian Paul | |
2010-03-30 | mesa: add new query/buffer targets for transform feedback | Brian Paul | |
2010-03-30 | mesa: plug in transform feedback functions, set limits | Brian Paul | |
2010-03-30 | mesa: initial check-in of transform feedback functions | Brian Paul | |
2010-03-30 | mesa: add EXT_transform_feedback to extension list | Brian Paul | |
2010-03-30 | mesa: initial data structures for transform feedback | Brian Paul | |
2010-03-30 | mesa: simplify query code with get_query_binding_point() | Brian Paul | |
2010-03-30 | Merge branch '7.8' | Michel Dänzer | |
Conflicts: Makefile src/mesa/main/version.h Resolved by keeping version strings from master (also in the intel driver). | |||
2010-03-30 | mesa: Add missing features. | Chia-I Wu | |
Add features tested in the code but missing from mfeatures.h. This also fixes some tests of features. They should be tested with "#if", not "#ifdef". | |||
2010-03-30 | mesa: Add umbrella features. | Chia-I Wu | |
Add FEATURE_GL, FEATURE_ES1, and FEATURE_ES2 for OpenGL, OpenGL ES 1.x, and OpenGL ES 2.x respectively. Define individual features through the new umbrella features. There is no real change introduced by this commit. | |||
2010-03-28 | mesa: set version string to 7.8 | Ian Romanick | |
Also set the correct release date. | |||
2010-03-27 | mesa: move/update hash function comments | Brian Paul | |
(cherry picked from commit 535742d75f0096b22d1b8ff203ae561167af18f7) | |||
2010-03-27 | mesa: fix deadlock in _mesa_HashFindFreeKeyBlock() | Brian Paul | |
Fixes fd.o bug 27340. (cherry picked from commit 8fe3b3f66ae57a1a6eca7f6dcb0455e14ad92075) | |||
2010-03-26 | mesa: only call _mesa_update_state() when necessary in glGet functions | Brian Paul | |
Only a few state vars require state validation before querying them. This potentially speeds up state queries. Encode that info into the state tuple table. Also, use the new tuple field to indicate when FLUSH_CURRENT() must be called to validate other state vars. Based on a patch submitted by Robert Bragg on Feb 12, 2010. | |||
2010-03-23 | mesa: Also print _NEW_STENCIL in _mesa_print_state() | Kristian Høgsberg | |
2010-03-22 | mesa: set version string to 7.8-rc2 | Ian Romanick | |
2010-03-22 | Merge branch '7.8' | Brian Paul | |
Conflicts: src/gallium/drivers/cell/ppu/cell_screen.c src/mesa/state_tracker/st_cb_drawpixels.c | |||
2010-03-22 | mesa: remove return, do as the comment says | Brian Paul | |
2010-03-22 | mesa: Add end of line to the end of a debug output. | Pauli Nieminen | |
2010-03-20 | mesa: added GL3 query for GL_TEXTURE_SHARED_SIZE | Brian Paul | |
2010-03-20 | mesa: added missing glGet query for GL_MAX_ARRAY_TEXTURE_LAYERS_EXT | Brian Paul | |
2010-03-20 | mesa: added new GL3 buffer object queries | Brian Paul | |
And clean up the error checking code. | |||
2010-03-20 | mesa: added GL3 buffer attachment aliases | Brian Paul | |
2010-03-20 | mesa: added GL3 ContextFlags field and query code | Brian Paul | |
2010-03-17 | Merge branch '7.8' | Brian Paul | |
Conflicts: src/mesa/state_tracker/st_cb_drawpixels.c | |||
2010-03-17 | mesa: rename params in prototype to match implementation | Brian Paul | |
2010-03-17 | Merge branch '7.8' into master | Pauli Nieminen | |
Conflicts: Makefile src/mesa/main/version.h | |||
2010-03-16 | mesa: set version string to 7.8-rc1 | Ian Romanick | |
2010-03-15 | Replace _mesa_strtod with _mesa_strtof. | Marcin Baczyński | |
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-03-12 | Merge branch '7.8' | Michel Dänzer | |
2010-03-12 | Grammar and spelling fixes | Jeff Smith | |
Signed-off-by: Jeff Smith <whydoubt@yahoo.com> Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-03-10 | mesa: raise an error when trying to bind non-existant texture to FBO | Brian Paul | |
If the user calls glRenderBufferTexture(texture=N) but texture N doesn't name an existing texture, raise GL_INVALID_ENUM. Plus, add a comment about some questionable error checking code in framebuffer_texture(). Ian? | |||
2010-03-10 | mesa: added new function comments | Brian Paul | |
2010-03-08 | Merge branch '7.8' | Brian Paul | |
2010-03-08 | mesa: add additional missing z formats for render to texture | Brian Paul | |
Allow render to texture for X8_Z24 and Z24_X8 formats. Replace big if/else with switch, etc. | |||
2010-03-08 | mesa: add render-to-texture case for MESA_FORMAT_S8_Z24 | Brian Paul | |
2010-03-08 | mesa: s/GL_DEPTH_STENCIL/GL_DEPTH_COMPONENT/ for MESA_FORMAT_Z16 renderbuffer | Brian Paul | |
MESA_FORMAT_Z16 has no stencil bits. | |||
2010-03-05 | mesa: bump version to 7.9 | Brian Paul | |
Now that the 7.8 branch has been created Mesa/master will be version 7.9 | |||
2010-03-05 | Always return VOLATILE for ObjectPurgeable(VOLATILE) | Chris Wilson | |
Fixes fdo bug 26128. The spec mandates that VOLATILE is returned from ObjectPurgeable(VOLATILE) irrespective of the actual status of the object upon completion of marking it purgeable. Conform to the spec, even though it seems wrong. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> | |||
2010-03-05 | mesa: minor reformatting, new comments | Brian Paul | |
2010-03-05 | mesa: whitespace fixes, 80-column wrapping, etc. | Brian Paul | |
2010-03-05 | Merge branch 'object-purgeable' | Chris Wilson | |
Acked-by: Brian Paul <brianp@vmware.com> | |||
2010-03-05 | APPLE_object_purgeable: core | Chris Wilson | |
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> | |||
2010-03-05 | Fix comparison of unsigned value against < 0. | Michel Dänzer | |
2010-03-04 | APPLE_object_purgeable: autogenerated files | Chris Wilson | |
2010-03-04 | Revert "mesa: Fix unsigned comparison." | Vinson Lee | |
This reverts commit f9504e75f02586a8561733e0e2711c65efa2979d. This patch is incorrect. | |||
2010-03-04 | mesa: Fix unsigned comparison. | Vinson Lee | |
2010-03-04 | mesa: Add asserts to check inputs to memcpy. | Vinson Lee | |