Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-26 | mesa: start adding GL 3.1 signed normalized texture formats | Brian Paul | |
2010-04-23 | mesa: simplify some code in _mesa_generate_mipmap() | Brian Paul | |
2010-04-23 | mesa: make is_compressed_format() non-static | Brian Paul | |
2010-04-23 | mesa: faster, simpler is_compressed_format() | Brian Paul | |
2010-04-22 | mesa: sort texel fetch/store table by format index | Brian Paul | |
2010-04-22 | Merge branch '7.8' | Brian Paul | |
Conflicts: src/mesa/state_tracker/st_format.c | |||
2010-04-22 | mesa: fix conversion errors in signed_rgba8888[rev] texel fetch | Brian Paul | |
Without the cast the returned texel colors were wrong. Also, we don't need the "& 0xff" part anymore. Bug found by Vinson Lee. | |||
2010-04-20 | mesa: do version checking for GL 3.x queries | Brian Paul | |
2010-04-20 | mesa: API and state for GL 3.1 primitive restart | Brian Paul | |
2010-04-20 | mesa: add GL 3.2 GL_CONTEXT_PROFILE_MASK query | Brian Paul | |
2010-04-20 | mesa: remove some comments | Brian Paul | |
2010-04-20 | mesa: better, smaller error handling code for glGet*() | Brian Paul | |
get.o is about 17% smaller. | |||
2010-04-20 | mesa: better, smaller error handling code for glEnable/Disable/IsEnabled() | Brian Paul | |
Use a goto instead of replicating the _mesa_error() call many times. enable.o is about 15% smaller. | |||
2010-04-20 | mesa: raise GL_INVALID_OPERATION for glReadPixels(GL_COLOR_INDEX) | Brian Paul | |
We no longer support CI-mode color buffers so this is always an error. | |||
2010-04-19 | Merge branch '7.8' | Jesse Barnes | |
2010-04-19 | mesa: Fix build with gcc 3.3. | Matthieu Herrb | |
Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-04-15 | mesa: Add missing format specifiers in error strings. | Vinson Lee | |
2010-04-13 | ffvertex: don't touch tex coords if coord replace is enabled. | Dave Airlie | |
The fixed function vertex program shouldn't need to deal or touch tex coords if stuffing is enabled. Though I'm not 100% this won't break assumption made elsewhere it seems like the correct thing to do, and makes r300g point sprites a lot easier to implement. draw: fix point-sprite when vertex program is used. This commit regressed draw, so fix it as well to help bisection. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-04-10 | Fix copyright headers. | Chia-I Wu | |
Update the warranty disclaimer to use the more general "THE AUTHORS OR COPYRIGHT HOLDERS". This is done manually on files created by me. Hope that I do not miss anything. | |||
2010-04-08 | Merge remote branch 'origin/7.8' | Dave Airlie | |
Conflicts: Makefile configs/default src/mesa/main/version.h | |||
2010-04-08 | texenvprogram: fix for ARB_draw_buffers. | Dave Airlie | |
piglit has a test called fbo-drawbuffers, this fails for me on r300g, and fixing the texenv program to use the DATA outputs fixes it. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-04-06 | mesa: Add OES_EGL_image to extension list. | Chia-I Wu | |
2010-04-05 | mesa: set version string to 7.8.1 | Ian Romanick | |
2010-04-05 | mesa: update_arrays() depends on program state. | Henri Verbeet | |
It uses ctx->VertexProgram._Current. Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-04-05 | mesa: remove unused var | Brian Paul | |
Fixes a coverity warnings. | |||
2010-04-05 | mesa: check for _NEW_BUFFERS for color read format queries | Brian Paul | |
2010-04-04 | mesa: don't turn on GL_EXT_transform_feedback yet | Brian Paul | |
2010-04-04 | mesa: implement core Mesa support for GL_ARB_draw_instanced | Brian Paul | |
2010-04-04 | mesa: new validation functions for GL_ARB_draw_instanced | Brian Paul | |
2010-04-04 | mesa: new extension flag for GL_EXT/ARB_draw_instanced | Brian Paul | |
2010-04-04 | glapi: regenerated files for GL_ARB_draw_instanced | Brian Paul | |
2010-04-02 | mesa: display list support for GL_EXT_transform_feedback | Brian Paul | |
2010-04-02 | mesa: plug in GL_EXT_transform_feedback functions into dispatch | Brian Paul | |
2010-04-02 | glapi: regenerated files for EXT_transform_feedback | Brian Paul | |
2010-04-01 | mesa: minor fixes in _mesa_GetTransformFeedbackVarying() | Brian Paul | |
2010-03-31 | mesa: Remove unnecessary header. | Vinson Lee | |
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) |