summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/program.c
Commit message (Collapse)AuthorAgeFilesLines
* added a few missing GLAPIENTRYs to make MinGW compile againDaniel Borca2003-10-231-3/+3
|
* Added GLAPIENTRY decorations for all first level OpenGL API function entryKendall Bennett2003-10-211-1/+1
| | | | | points so that the calling conventions will work correctly with the assembler stubs with the Open Watcom compiler.
* add switch defaults to silence warningsBrian Paul2003-10-101-0/+6
|
* Add extra cases and enums for _mesa_fetch_state(), and set the length ofKarl Rasche2003-09-231-3/+74
| | | | program_parameter.StateIndexes[] to 6, used for fetching matrix state
* Assorted casts to silence g++ warnings.Brian Paul2003-09-191-4/+5
|
* Add casts to prevent signed/unsigned compare compiler warnings.Karl Schultz2003-09-181-2/+2
|
* fix typoBrian Paul2003-09-051-1/+1
|
* move GL_MESA_program_debug code into program.cBrian Paul2003-09-051-0/+225
|
* fix fog.End errorBrian Paul2003-09-021-1/+1
|
* Moved some shared vertex/fragment program code into new program.c file.Brian Paul2003-08-311-0/+927
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.