summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/arbprogram.c
Commit message (Collapse)AuthorAgeFilesLines
* mesa: rename src/mesa/shader/ to src/mesa/program/Brian Paul2010-06-101-4/+4
|
* mesa: move arbprogram.[ch] to main/Brian Paul2010-06-101-0/+940
|
* Moved to src/mesa/shaderMichal Krol2004-03-291-721/+0
|
* add missing else statementsBrian Paul2004-03-191-6/+6
|
* Make it easier for drivers to create "subclasses" of the existingKeith Whitwell2004-02-141-2/+11
| | | | | | | program struct hierarchy. Add driver callbacks to enable the above and make it possible to track more changes to program objects.
* added some missing FLUSH_VERTICES callsBrian Paul2004-01-171-0/+10
|
* Initial work for bounds checking of vertex arrays and vertex buffer objects.Brian Paul2003-10-221-1/+1
| | | | | | Only glDrawArrays() done so far. Simplified glVertex/Color/etcPointer functions. Misc casts added here and there.
* Added GLAPIENTRY decorations for all first level OpenGL API function entryKendall Bennett2003-10-211-21/+21
| | | | | points so that the calling conventions will work correctly with the assembler stubs with the Open Watcom compiler.
* Assorted casts to silence g++ warnings.Brian Paul2003-09-191-2/+4
|
* More work on ARB_vertex_buffer_object.Brian Paul2003-09-171-1/+1
| | | | | Use GLubyte * instead of void * for gl_client_array->Ptr to simplify upcoming pointer arithmetic changes.
* Some work on ARB_vertex_buffer_object.Brian Paul2003-09-151-0/+6
| | | | Use GL_CLIENT_ACTIVE_TEXTURE when returning texcoord array values in get.c
* move GL_MESA_program_debug code into program.cBrian Paul2003-09-051-207/+0
|
* Moved some shared vertex/fragment program code into new program.c file.Brian Paul2003-08-311-34/+0
| | | | | | | Implemented new program_parameter_list type and functions for dealing with named program parameters, constants and GL state references. New state_index enum for describing GL state referenced within ARB vertex/ fragment programs. Plus, functions for fetching named GL state.
* Silence compiler warnings about implicit casts or conversions by supplying ↵Karl Schultz2003-08-301-13/+15
| | | | explicit casts and/or tweaking constant and variable definitions.
* Re-org of register files for vertex/fragment programs. Will be easier toBrian Paul2003-08-171-23/+12
| | | | hook in global state references, etc. for ARB programs.
* remove temporary prototypesBrian Paul2003-08-061-18/+2
|
* Restore more code lost during last big merge.Brian Paul2003-07-221-0/+33
| | | | Rename colortable-related functions.
* Implement debugger callback, etc for vertex programs. Misc clean-ups.Brian Paul2003-07-221-5/+14
|
* Initial implementation of GL_MESA_program_debug - a vertex/fragment programBrian Paul2003-07-211-1/+215
| | | | debugging extension.
* Merge Jose's documentation and core Mesa changes from embedded branchKeith Whitwell2003-07-171-1/+1
|
* fix GL_CURRENT_VERTEX_ATTRIB_ARB queriesBrian Paul2003-06-101-0/+1
|
* glBindProgramARB dispatches to glBindProgramNV (remove _mesa_BindProgramARB).Brian Paul2003-05-281-276/+0
| | | | Removed VertexAttrib*ARB() stubs.
* Use ctx->Const.MaxTextureImageUnits and MaxTextureCoordUnits in more places.Brian Paul2003-05-011-9/+1
| | | | Misc vertex array / vertex program changes.
* alias ARB/NV program functions where possibleBrian Paul2003-04-211-21/+0
|
* minor re-org of program matrix, program local parameter limitsBrian Paul2003-04-181-23/+17
|
* fix some glBindProgramNV/ARB detailsBrian Paul2003-04-171-12/+23
|
* Added arbprogram.c to Makefiles.Brian Paul2003-04-171-65/+51
| | | | | Added display list support for GL_NV_fragment_program. Assorted clean-ups.
* checkpoint: more infrastructure for GL_ARB_vertex/fragment_program.Brian Paul2003-04-171-59/+475
|
* Some groundwork for GL_ARB_vertex/fragment_program.Brian Paul2003-04-111-0/+601