summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/nvprogram.h
Commit message (Collapse)AuthorAgeFilesLines
* mesa: Remove the NV program API functions.Kenneth Graunke2012-10-161-86/+0
| | | | | | | These are all unused now. Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Eric Anholt <eric@anholt.net>
* mesa: Remove API specific to GL_NV_vertex_program's aliased attribs.Eric Anholt2012-10-151-9/+0
| | | | | | v2: Rebase on top of get.c changes. Reviewed-by: Brian Paul <brianp@vmware.com> (v1)
* mesa: Remove support for GL_VERTEX_STATE_PROGRAMs and their execution.Eric Anholt2012-10-151-3/+0
| | | | Reviewed-by: Brian Paul <brianp@vmware.com>
* mesa: Remove NV_vertex_program-specific parameters support.Eric Anholt2012-10-151-14/+0
| | | | Reviewed-by: Brian Paul <brianp@vmware.com>
* mesa: Remove support for NV_vertex_program's tracked matrices.Eric Anholt2012-10-151-7/+0
| | | | Reviewed-by: Brian Paul <brianp@vmware.com>
* nvprogram: Silence "warning: unused parameter ‘ctx’"Ian Romanick2011-09-091-1/+1
|
* mesa: upgrade to glext.h version 66Brian Paul2010-11-171-2/+4
| | | | | The type of the num/count parameter to glProgramParameters4[df]vNV() changed so some API dispatch code needed updates too.
* mesa: Clean up header file inclusion in nvprogram.h.Vinson Lee2010-11-091-1/+3
|
* Drop GLcontext typedef and use struct gl_context insteadKristian Høgsberg2010-10-131-2/+2
|
* mesa: Include missing headers in nvprogram.h.Vinson Lee2010-07-301-0/+2
|
* mesa: move nvprogram.[ch] to main/Brian Paul2010-06-101-0/+113
|
* these files now live in the shader directoryBrian Paul2004-03-301-119/+0
|
* Added GLAPIENTRY decorations for all first level OpenGL API function entryKendall Bennett2003-10-211-26/+26
| | | | | points so that the calling conventions will work correctly with the assembler stubs with the Open Watcom compiler.
* Moved some shared vertex/fragment program code into new program.c file.Brian Paul2003-08-311-57/+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.
* Added arbprogram.c to Makefiles.Brian Paul2003-04-171-2/+2
| | | | | 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-2/+5
|
* proper dispatch for NV_fragment_program functionsBrian Paul2003-03-291-17/+30
|
* Rewrite of fragment program named parameters, constants, etc. Not done.Brian Paul2003-03-191-21/+1
|
* assorted clean-ups and improvementsBrian Paul2003-02-251-3/+3
|
* added _mesa_find_line_column()Brian Paul2003-02-231-1/+5
|
* more work on DEFINE/DECLARATION statements, symbol tablesBrian Paul2003-02-161-2/+22
|
* First batch of code for GL_NV_fragment_program.Brian Paul2003-01-141-0/+156
Re-org of some GL_NV_vertex_program code. Replace MAX_TEXTURE_UNITS with MAX_TEXTURE_COORD_UNITS and MAX_TEXTURE_IMAGE_UNITS.