Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: move/rename is_depth_or_stencil_format() | Brian Paul | 2010-04-27 | 2 | -0/+29 |
| | | | | Put it with other, similar functions. | ||||
* | mesa: start adding GL 3.1 signed normalized texture formats | Brian Paul | 2010-04-26 | 6 | -8/+470 |
| | |||||
* | mesa: simplify some code in _mesa_generate_mipmap() | Brian Paul | 2010-04-23 | 1 | -19/+10 |
| | |||||
* | mesa: make is_compressed_format() non-static | Brian Paul | 2010-04-23 | 3 | -38/+40 |
| | |||||
* | mesa: faster, simpler is_compressed_format() | Brian Paul | 2010-04-23 | 1 | -18/+24 |
| | |||||
* | mesa: sort texel fetch/store table by format index | Brian Paul | 2010-04-22 | 1 | -250/+256 |
| | |||||
* | Merge branch '7.8' | Brian Paul | 2010-04-22 | 1 | -8/+8 |
|\ | | | | | | | | | | | Conflicts: src/mesa/state_tracker/st_format.c | ||||
| * | mesa: fix conversion errors in signed_rgba8888[rev] texel fetch | Brian Paul | 2010-04-22 | 1 | -8/+8 |
| | | | | | | | | | | | | Without the cast the returned texel colors were wrong. Also, we don't need the "& 0xff" part anymore. Bug found by Vinson Lee. | ||||
* | | mesa: do version checking for GL 3.x queries | Brian Paul | 2010-04-20 | 2 | -8/+74 |
| | | |||||
* | | mesa: API and state for GL 3.1 primitive restart | Brian Paul | 2010-04-20 | 6 | -0/+76 |
| | | |||||
* | | mesa: add GL 3.2 GL_CONTEXT_PROFILE_MASK query | Brian Paul | 2010-04-20 | 4 | -5/+27 |
| | | |||||
* | | mesa: remove some comments | Brian Paul | 2010-04-20 | 1 | -12/+10 |
| | | |||||
* | | mesa: better, smaller error handling code for glGet*() | Brian Paul | 2010-04-20 | 2 | -623/+645 |
| | | | | | | | | get.o is about 17% smaller. | ||||
* | | mesa: better, smaller error handling code for glEnable/Disable/IsEnabled() | Brian Paul | 2010-04-20 | 1 | -24/+29 |
| | | | | | | | | | | Use a goto instead of replicating the _mesa_error() call many times. enable.o is about 15% smaller. | ||||
* | | mesa: raise GL_INVALID_OPERATION for glReadPixels(GL_COLOR_INDEX) | Brian Paul | 2010-04-20 | 1 | -0/+6 |
| | | | | | | | | We no longer support CI-mode color buffers so this is always an error. | ||||
* | | Merge branch '7.8' | Jesse Barnes | 2010-04-19 | 2 | -3/+6 |
|\| | |||||
| * | mesa: Fix build with gcc 3.3. | Matthieu Herrb | 2010-04-19 | 2 | -3/+6 |
| | | | | | | | | Signed-off-by: Brian Paul <[email protected]> | ||||
* | | mesa: Add missing format specifiers in error strings. | Vinson Lee | 2010-04-15 | 1 | -13/+13 |
| | | |||||
* | | ffvertex: don't touch tex coords if coord replace is enabled. | Dave Airlie | 2010-04-13 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 <[email protected]> | ||||
* | | Fix copyright headers. | Chia-I Wu | 2010-04-10 | 2 | -10/+12 |
| | | | | | | | | | | | | 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. | ||||
* | | Merge remote branch 'origin/7.8' | Dave Airlie | 2010-04-08 | 2 | -18/+30 |
|\| | | | | | | | | | | | | | Conflicts: Makefile configs/default src/mesa/main/version.h | ||||
| * | texenvprogram: fix for ARB_draw_buffers. | Dave Airlie | 2010-04-08 | 1 | -15/+28 |
| | | | | | | | | | | | | | | 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 <[email protected]> | ||||
| * | mesa: set version string to 7.8.1 | Ian Romanick | 2010-04-05 | 1 | -2/+2 |
| | | |||||
| * | mesa: update_arrays() depends on program state. | Henri Verbeet | 2010-04-05 | 1 | -3/+2 |
| | | | | | | | | | | | | It uses ctx->VertexProgram._Current. Signed-off-by: Brian Paul <[email protected]> | ||||
* | | mesa: Add OES_EGL_image to extension list. | Chia-I Wu | 2010-04-06 | 4 | -0/+18 |
| | | |||||
* | | mesa: remove unused var | Brian Paul | 2010-04-05 | 1 | -2/+1 |
| | | | | | | | | Fixes a coverity warnings. | ||||
* | | mesa: check for _NEW_BUFFERS for color read format queries | Brian Paul | 2010-04-05 | 2 | -2/+18 |
| | | |||||
* | | mesa: don't turn on GL_EXT_transform_feedback yet | Brian Paul | 2010-04-04 | 1 | -1/+1 |
| | | |||||
* | | mesa: implement core Mesa support for GL_ARB_draw_instanced | Brian Paul | 2010-04-04 | 3 | -0/+28 |
| | | |||||
* | | mesa: new validation functions for GL_ARB_draw_instanced | Brian Paul | 2010-04-04 | 2 | -1/+116 |
| | | |||||
* | | mesa: new extension flag for GL_EXT/ARB_draw_instanced | Brian Paul | 2010-04-04 | 2 | -0/+3 |
| | | |||||
* | | glapi: regenerated files for GL_ARB_draw_instanced | Brian Paul | 2010-04-04 | 1 | -956/+991 |
| | | |||||
* | | mesa: display list support for GL_EXT_transform_feedback | Brian Paul | 2010-04-02 | 1 | -1/+48 |
| | | |||||
* | | mesa: plug in GL_EXT_transform_feedback functions into dispatch | Brian Paul | 2010-04-02 | 1 | -0/+13 |
| | | |||||
* | | glapi: regenerated files for EXT_transform_feedback | Brian Paul | 2010-04-02 | 2 | -3476/+3576 |
| | | |||||
* | | mesa: minor fixes in _mesa_GetTransformFeedbackVarying() | Brian Paul | 2010-04-01 | 1 | -1/+10 |
| | | |||||
* | | mesa: Remove unnecessary header. | Vinson Lee | 2010-03-31 | 1 | -1/+0 |
| | | |||||
* | | mesa: Use a consistent name of the external s3tc library for all windows ↵ | José Fonseca | 2010-03-31 | 1 | -1/+1 |
| | | | | | | | | compilers. | ||||
* | | mesa: added glGet queries for transform_feedback | Brian Paul | 2010-03-30 | 2 | -0/+185 |
| | | |||||
* | | mesa: added glEnable/Disable state for transform feedback | Brian Paul | 2010-03-30 | 1 | -0/+16 |
| | | |||||
* | | mesa: add new query/buffer targets for transform feedback | Brian Paul | 2010-03-30 | 2 | -0/+19 |
| | | |||||
* | | mesa: plug in transform feedback functions, set limits | Brian Paul | 2010-03-30 | 1 | -0/+8 |
| | | |||||
* | | mesa: initial check-in of transform feedback functions | Brian Paul | 2010-03-30 | 2 | -0/+498 |
| | | |||||
* | | mesa: add EXT_transform_feedback to extension list | Brian Paul | 2010-03-30 | 1 | -0/+4 |
| | | |||||
* | | mesa: initial data structures for transform feedback | Brian Paul | 2010-03-30 | 3 | -0/+49 |
| | | |||||
* | | mesa: simplify query code with get_query_binding_point() | Brian Paul | 2010-03-30 | 1 | -71/+47 |
| | | |||||
* | | Merge branch '7.8' | Michel Dänzer | 2010-03-30 | 1 | -12/+24 |
|\| | | | | | | | | | | | | | | | Conflicts: Makefile src/mesa/main/version.h Resolved by keeping version strings from master (also in the intel driver). | ||||
| * | mesa: set version string to 7.8 | Ian Romanick | 2010-03-28 | 1 | -1/+1 |
| | | | | | | | | Also set the correct release date. | ||||
| * | mesa: move/update hash function comments | Brian Paul | 2010-03-27 | 1 | -6/+11 |
| | | | | | | | | (cherry picked from commit 535742d75f0096b22d1b8ff203ae561167af18f7) | ||||
| * | mesa: fix deadlock in _mesa_HashFindFreeKeyBlock() | Brian Paul | 2010-03-27 | 1 | -6/+13 |
| | | | | | | | | | | Fixes fd.o bug 27340. (cherry picked from commit 8fe3b3f66ae57a1a6eca7f6dcb0455e14ad92075) |