Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: remove some last remnants of GL_MESA_program_debug | Brian Paul | 2009-03-11 | 1 | -6/+3 |
| | |||||
* | Make GL_ARB_vertex_buffer_object mandatory | Ian Romanick | 2009-01-28 | 1 | -4/+0 |
| | | | | Signed-off-by: Ian Romanick <[email protected]> | ||||
* | mesa: silence compiler warning at -O2 | Brian Paul | 2009-01-20 | 1 | -0/+1 |
| | |||||
* | 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: refactor: move _mesa_Bind/Gen/DeleteProgram() to arbprogram.c | Brian Paul | 2008-07-29 | 1 | -0/+202 |
| | | | | No API-level functions now in program.c. | ||||
* | Bug #13492: Only call ProgramStringNotify if program parsing succeeded. | Eric Anholt | 2008-01-15 | 1 | -2/+2 |
| | | | | | | Wine intentionally tries some out-of-spec programs to test strictness, and calling ProgramStringNotify on the results of a failed program parse resulted in crashes in the 965 driver. | ||||
* | alias ProgramEnvParameter4xyARB and ProgramParameter4xyNV (bug #12935) | Roland Scheidegger | 2007-11-09 | 1 | -3/+26 |
| | | | | these should be the same functions (as per spec). | ||||
* | fix GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB bug (10787) | Brian | 2007-04-28 | 1 | -4/+12 |
| | |||||
* | fix g++ warnings/errors | Brian | 2007-01-23 | 1 | -2/+2 |
| | |||||
* | Moved NumTexInstructions, NumTexIndirections, etc. into gl_program since | Brian | 2007-01-09 | 1 | -6/+6 |
| | | | | they can now apply to vertex programs. | ||||
* | fix several program-related bugs (bug 9136) | Brian Paul | 2006-11-23 | 1 | -2/+8 |
| | |||||
* | fix error msg | Brian Paul | 2006-11-04 | 1 | -1/+1 |
| | |||||
* | fix for glGetVertexAttribfvARB, bug 8883 | Brian Paul | 2006-11-04 | 1 | -1/+6 |
| | |||||
* | Rename _mesa_IsProgram() to _mesa_IsProgramARB() to avoid collision with the | Brian Paul | 2006-11-02 | 1 | -1/+25 |
| | | | | OpenGL 2.0 function of the same name. | ||||
* | Add support for GL_EXT_gpu_program_parameters. Any driver that enables | Ian Romanick | 2006-08-15 | 1 | -0/+88 |
| | | | | | either GL_ARB_vertex_program or GL_ARB_fragment_program should enable this extension as well. | ||||
* | Some structure renaming. Prefix vertex/fragment-related structs with | Brian Paul | 2006-07-20 | 1 | -7/+7 |
| | | | | "gl_" to match other structs. | ||||
* | Add support for GL_APPLE_vertex_array_object. Several test programs | Ian Romanick | 2006-06-12 | 1 | -11/+11 |
| | | | | | | | and demos are also added. Adding basic support to drivers should be as easy as just enabling the extension, though thorough test would also be required. | ||||
* | don't generate GL_INVALID_ENUM if GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB, ↵ | Tilman Sauerbeck | 2006-05-30 | 1 | -0/+1 |
| | | | | which is actually handled | ||||
* | More GLSL code: | Michal Krol | 2006-04-11 | 1 | -6/+3 |
| | | | | | | | | | | | | - use macros to access and modify render inputs bit-field; - un-alias generic vertex attributes for ARB vertex calls; - use MAX_VERTEX_PROGRAM_ATTRIBS (NV code) or MAX_VERTEX_ATTRIBS (ARB code) in place of VERT_ATTRIB_MAX; - define VERT_ATTRIB_GENERIC0..15 for un-aliased vertex attributes for ARB_vertex_shader; - fix generic attribute index range check in arbprogparse.c; - interface GLSL varyings between vertex and fragment shader; - use 64-bit optimised bitset (bitset.h) for render inputs; | ||||
* | Remove the _mesa_parse_arb_vertex/fragment_program() functions into | Brian Paul | 2005-11-19 | 1 | -18/+8 |
| | | | | | | | arbprogparse.c and remove arbvertparse.[ch] and arbfragparse.[ch]. Clean up quite a bit of the arb parsing code. Rewrite parser extension code to avoid a mess of string operations every time the parser was used. | ||||
* | Unify vertex/fragment program instuctions. | Brian Paul | 2005-11-05 | 1 | -2/+1 |
| | | | | Based on patch by Ian (#4967) but also unify instruction opcodes. | ||||
* | Re-org and clean-up of vertx/fragment program limits (instructions, | Brian Paul | 2005-11-01 | 1 | -151/+115 |
| | | | | | | | temporaries, parameters, etc). glGetProgramivARB() now returns all the right things. Updated i915 and r300 code to initialize program native limits and current program's native instruction/temporary/etc counts. | ||||
* | Port Mesa to build on a P64 platform (e.g., Win64). P64 platforms | Karl Schultz | 2005-05-05 | 1 | -1/+1 |
| | | | | | | | | use 64-bit pointers and 32-bit longs. So, operations like casting pointers to unsigned long and back to pointer won't work. glheader.h now includes files to define uintptr_t, which should instead be used for this sort of operation. It is an integer type that is the same size as a pointer. | ||||
* | fix if/else bug in _mesa_ProgramEnvParameter4fARB (fdo bug 1645) | Brian Paul | 2004-10-16 | 1 | -2/+2 |
| | |||||
* | fix GetVertexAttrib problem | Brian Paul | 2004-10-06 | 1 | -1/+4 |
| | |||||
* | ARB_fp support for GL_ARB_draw_buffers (Karl Rasche) | Brian Paul | 2004-10-04 | 1 | -2/+2 |
| | |||||
* | Moved from src/mesa/main. | Michal Krol | 2004-03-10 | 1 | -0/+721 |