Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: refactor: move multisample-related functions into new multisample.c file | Brian Paul | 2008-09-21 | 8 | -44/+109 |
| | |||||
* | mesa: refactor: move _mesa_resizebuffers(), _mesa_ResizeBuffersMESA() to ↵ | Brian Paul | 2008-09-21 | 6 | -83/+88 |
| | | | | | | framebuffer.c (cherry picked from commit 9091015a9782ad15e58540a8fd61df83ea2bfe31) | ||||
* | mesa: refactor: move glClear, glClearColor into new clear.c file. | Brian Paul | 2008-09-21 | 6 | -158/+232 |
| | |||||
* | mesa: refactor: move scissor functions into new scissor.c file | Brian Paul | 2008-09-21 | 8 | -85/+150 |
| | | | | (cherry picked from commit 4be7296bfcba22a849f949d105ea385e6964cc25) | ||||
* | mesa: refactor: move pixel map/scale/bias code into image.c | Brian Paul | 2008-09-21 | 4 | -416/+486 |
| | | | | pixel.c is just the API-related code now. | ||||
* | mesa: refactor: new _mesa_init_pixelstore() function | Brian Paul | 2008-09-21 | 4 | -28/+43 |
| | | | | (cherry picked from commit 5f91007f996d0b7e3233f221a6b0056203e356d2) | ||||
* | mesa: refactor: move _mesa_init_exec_table() into new api_exec.c file | Brian Paul | 2008-09-21 | 6 | -806/+872 |
| | | | | (cherry picked from commit b36e6f0baf64491772b8e1a1cddf68a7dcf8ee22) | ||||
* | mesa: refactor: move glReadPixels code into new readpix.c file | Brian Paul | 2008-09-21 | 6 | -171/+382 |
| | |||||
* | Add some FLUSH_CURRENT() calls. | Brian | 2008-09-21 | 2 | -0/+4 |
| | | | | | | | | Without these we can find ourselves in _mesa_load_state_parameters() computing derived lighting/material values whhen the current material properties haven't been updated from the VBO. This may be a somewhat wide-spread problem that needs more attention... (cherry picked from commit 49adf51eeec31c9f3c995a70acc5008522689708) | ||||
* | mesa: refactor: move glPixelStore function into new pixelstore.c file | Brian Paul | 2008-09-21 | 5 | -203/+273 |
| | |||||
* | mesa: remove EXT/NV suffixes from _mesa_PointParameter functions | Brian Paul | 2008-09-21 | 4 | -41/+28 |
| | |||||
* | mesa: remove dead file | Keith Whitwell | 2008-09-21 | 1 | -42/+0 |
| | |||||
* | mesa: add explict float casts | Keith Whitwell | 2008-09-21 | 1 | -48/+48 |
| | |||||
* | mesa: move fixed function vertex program builder from tnl to core mesa | Keith Whitwell | 2008-09-21 | 7 | -193/+1899 |
| | | | | | | Also unify caching of fragment and vertex programs in shader/prog_cache.c` Brought across from gallium-0.2 | ||||
* | mesa: add parenthesis | Brian Paul | 2008-09-21 | 1 | -3/+3 |
| | | | | (cherry picked from commit c366fd83b617db6c8c064802ff4bf120d654507d) | ||||
* | mesa: standardize on C99's uint*_t instead of u_int*_t | Keith Whitwell | 2008-09-21 | 1 | -9/+0 |
| | |||||
* | mesa: move rastpos helper to tnl | Keith Whitwell | 2008-09-21 | 2 | -529/+41 |
| | |||||
* | mesa: improved driver query interface | Keith Whitwell | 2008-09-21 | 4 | -61/+90 |
| | | | | Brought over from gallium-0.2 branch. | ||||
* | mesa: prefix a bunch of #include lines with "main/". | Brian Paul | 2008-09-18 | 1 | -6/+6 |
| | | | | | This is another step toward removing a whole bunch of -I flags from the cc commands. Still need to address driver code... | ||||
* | mesa: rework GLSL vertex attribute binding | Brian Paul | 2008-09-16 | 1 | -1/+3 |
| | | | | | | | Calls to glBindAttribLocation() should not take effect until the next time that glLinkProgram() is called. gl_shader_program::Attributes now just contains user-defined bindings. gl_shader_program::VertexProgram->Attributes contains the actual/final bindings. | ||||
* | mesa: fix MSAA enable state in update_multisample() | Brian Paul | 2008-09-15 | 1 | -4/+4 |
| | |||||
* | mesa: remove some assertions that are invalid during context tear-down | Brian Paul | 2008-09-15 | 1 | -1/+4 |
| | |||||
* | mesa: get another class of degenerate dlists working | Keith Whitwell | 2008-09-15 | 1 | -2/+5 |
| | | | | Primitive begin in one dlist, end in another. | ||||
* | mesa: return after _mesa_problem() calls | Guillaume Melquiond | 2008-09-13 | 1 | -0/+1 |
| | |||||
* | Fixes for Mingw | Shane Blackett | 2008-09-11 | 1 | -1/+1 |
| | |||||
* | mesa: replace MALLOC w/ CALLOC to fix memory error in glPushClientAttrib() | Brian Paul | 2008-09-05 | 1 | -1/+1 |
| | |||||
* | mesa: replace MALLOC w/ CALLOC to fix valgrind warning | Brian Paul | 2008-09-05 | 1 | -1/+1 |
| | |||||
* | mesa: improved gl_buffer_object reference counting | Brian Paul | 2008-09-04 | 5 | -160/+172 |
| | | | | | Use new _mesa_reference_buffer_object() function wherever possible. Fixes buffer object/display list crash reported in ParaView. | ||||
* | mesa: merge stencil values into depth values for MESA_FORMAT_S8_Z24 | Xiang, Haihao | 2008-09-04 | 1 | -2/+2 |
| | |||||
* | mesa: Support for MESA_FORMAT_S8_Z24 texture | Jakob Bornecrantz | 2008-09-04 | 5 | -0/+134 |
| | | | | cherry-picked from gallium-0.1 | ||||
* | fix BUFFER_DEPTH/BUFFER_ACCUM mix-up | Brian Paul | 2008-09-02 | 1 | -6/+6 |
| | |||||
* | fix no error generated when calling glLight{if}[v] inside begin/end (bug 17408) | Roland Scheidegger | 2008-09-02 | 1 | -0/+1 |
| | |||||
* | mesa: don't check for GLSL 1.2 to advertise GL 2.1 | Brian Paul | 2008-08-26 | 2 | -11/+7 |
| | | | | The GLSL 1.2 features are minor... | ||||
* | mesa: set version string to 7.3-devel | Brian Paul | 2008-08-25 | 1 | -4/+4 |
| | |||||
* | Call _ae_update_state when array enable state changes | Krzysztof Czurylo | 2008-08-21 | 1 | -0/+4 |
| | | | | | | | | | | | | | | Basically, the application enables client vertex and color arrays, renders something, then disables color array, and renders something else (using vertex array only). Even though the color array is disabled (and the pointer is no longer valid), the driver still tries to read color data from this array (which results in an exception). This is because enabling/disabling array does not trigger _ae_update_state() and the list of enabled arrays is not updated. _ae_update_state() it's called on the first state validation only (as all the "dirty" flags are set at the beginning). Any further change to client arrays' state has no effect. | ||||
* | Flush vertices when updating texObj->GenerateMipmap state. | Eric Anholt | 2008-08-21 | 1 | -0/+1 |
| | | | | Caught by texturing/gen-teximage test in piglit. | ||||
* | mesa: rearrange some code in _mesa_BindTexture() to fix error detection bug ↵ | Brian Paul | 2008-08-18 | 1 | -42/+59 |
| | | | | | | 17173 Also, move GL_TEXTURE_RECTANGLE init code into separate function. | ||||
* | prep for 7.1 rc4 | Brian Paul | 2008-08-16 | 1 | -1/+1 |
| | |||||
* | mesa: fix out-of-bounds memory reads in swizzle_copy() | Brian Paul | 2008-08-08 | 1 | -30/+90 |
| | |||||
* | mesa: fix glBindTexture error string (bug 17005) | Brian Paul | 2008-08-07 | 1 | -1/+1 |
| | |||||
* | mesa: fix comment about texture targets (bug 17005) | Brian Paul | 2008-08-06 | 1 | -1/+1 |
| | |||||
* | fix some FBO/texture queries (bug 15296) | Brian Paul | 2008-08-06 | 1 | -2/+12 |
| | |||||
* | added null ptr check (fix bug 16959) | Brian Paul | 2008-08-03 | 1 | -1/+2 |
| | |||||
* | mesa: fix issues causing warnings on Windows | Brian Paul | 2008-07-29 | 1 | -2/+4 |
| | |||||
* | mesa: glsl: only try to link shaders defining main() | Brian Paul | 2008-07-29 | 1 | -2/+2 |
| | |||||
* | mesa: remove an error check for NV_v_p that doesn't apply to ARB_v_p | Brian Paul | 2008-07-29 | 1 | -5/+0 |
| | |||||
* | mesa: implement grammar/parsing for precision/invariant syntax | Brian Paul | 2008-07-29 | 1 | -0/+1 |
| | | | | Plus, fix some issues with pre-defined preprocessor symbols and version checking. | ||||
* | disable GL_ARB_shading_language_120 until 1.20 features are complete | Brian Paul | 2008-07-29 | 1 | -2/+2 |
| | |||||
* | mesa: move extensions->version code into separate function | Brian Paul | 2008-07-24 | 1 | -70/+72 |
| | |||||
* | mesa: don't include Mesa version in GL_SHADING_LANGUAGE_VERSION string | Brian Paul | 2008-07-24 | 1 | -3/+5 |
| |