summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/nvfragparse.c
Commit message (Collapse)AuthorAgeFilesLines
* Moved some shared vertex/fragment program code into new program.c file.Brian Paul2003-08-311-100/+27
| | | | | | | 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-1/+1
| | | | explicit casts and/or tweaking constant and variable definitions.
* fix minor warnings with castsBrian Paul2003-08-291-4/+11
|
* Re-org of register files for vertex/fragment programs. Will be easier toBrian Paul2003-08-171-122/+68
| | | | hook in global state references, etc. for ARB programs.
* Initial implementation of GL_MESA_program_debug - a vertex/fragment programBrian Paul2003-07-211-3/+34
| | | | debugging extension.
* Merge Jose's documentation and core Mesa changes from embedded branchKeith Whitwell2003-07-171-1/+1
|
* fix scalar literal parsing glitchesBrian Paul2003-05-101-3/+15
|
* Some groundwork for GL_ARB_vertex/fragment_program.Brian Paul2003-04-111-0/+1
|
* fix some problems parsing scalar source argumentsBrian Paul2003-04-081-28/+43
|
* Added ctx->Texture._EnabledCoordUnits bitfield.Brian Paul2003-04-081-17/+0
| | | | | | Fixed some vertex array / vertex program glitches with glDrawElements. Fixed some fragment program runtime bugs. Non-trivial Cg programs are running now.
* scalar source reg can be a scalar or vector literalBrian Paul2003-04-071-1/+11
|
* minor parser fixes, program print-out fixesBrian Paul2003-04-071-24/+62
|
* fragment program named constants and named program parameters basically work nowBrian Paul2003-04-051-32/+51
|
* _mesa_realloc() fixBrian Paul2003-04-011-7/+7
|
* Rewrite of fragment program named parameters, constants, etc. Not done.Brian Paul2003-03-191-8/+112
|
* Fix up some fragment program texture enable issues.Brian Paul2003-03-151-15/+1
| | | | Implemented TXD instruction.
* Clean-up of parser error handling/reporting.Brian Paul2003-03-141-91/+119
| | | | Basic fragment program texture instructions are limping along.
* Killed mmath.[ch]. Moved low-level functions/assembly code into imports.[ch]Brian Paul2003-03-011-4/+14
| | | | | Moved type conversion and interpolation macros into macros.h Updated all the files that used to include mmath.h
* More clean-ups. Parse scalar/vector literals and defined identifier sources.Brian Paul2003-02-261-131/+80
|
* s/Parse_SwizzleSrcReg/Parse_VectorSrc/. Parse +/- and absolute value syntax.Brian Paul2003-02-251-31/+56
|
* assorted clean-ups and improvementsBrian Paul2003-02-251-56/+80
|
* use _mesa_find_line_column()Brian Paul2003-02-231-34/+3
|
* silence warning with a castBrian Paul2003-02-231-2/+2
|
* parser clean-upsBrian Paul2003-02-231-272/+231
|
* Implement parsing of texture instructions and prototype execution.Brian Paul2003-02-171-133/+210
| | | | Misc parser clean-ups.
* more work on DEFINE/DECLARATION statements, symbol tablesBrian Paul2003-02-161-117/+136
|
* replace _mesa_strtof() with _mesa_strtod()Brian Paul2003-02-081-3/+3
|
* add some castsBrian Paul2003-01-191-2/+2
|
* First batch of code for GL_NV_fragment_program.Brian Paul2003-01-141-0/+1619
Re-org of some GL_NV_vertex_program code. Replace MAX_TEXTURE_UNITS with MAX_TEXTURE_COORD_UNITS and MAX_TEXTURE_IMAGE_UNITS.