summaryrefslogtreecommitdiff
path: root/src/mesa/main/arbparse.c
AgeCommit message (Collapse)Author
2004-03-29Moved to src/mesa/shader and renamed to arbprogparse.[ch]Michal Krol
2004-03-26fix some warningsBrian Paul
2004-03-20make null-terminated copy of program string so that parse works correctlyBrian Paul
2004-02-12Minor re-org of state for fog and precision options.Brian Paul
2004-01-22Minor tweaks to help out at a driver level.Keith Whitwell
2004-01-15Cosmetic changes.Brian Paul
Added a bunch of const qualifiers. Use _mesa_memcpy() instead of memcpy(), etc.
2004-01-13add casts to silence compiler warningsKarl Schultz
2004-01-11fix vertex program debugger issues (Bug 874382)Brian Paul
2004-01-08set StringPos field in parse_vp_instruction (Mesa bug 873011)Brian Paul
2003-12-12- Test instruction countKarl Rasche
- Throw an error for VPs if we set position invariance and then write to the output position
2003-12-09Arg. I can't code.. Test that we don't recongnize '0' as having a leading zero..Karl Rasche
2003-12-09 - New grammar (0.5) from Michal Krol, merges many opcodes and adds range ↵Karl Rasche
testing - Proper header on arbparse_syn.h - Handling of relative offsets for ARB_vp - s/MaxFragment/MaxVertex - Check for leading 0's in the fraction portions of floats in parse_float()
2003-12-08kill a warningAlan Hourihane
2003-12-02Remove things having to do with ARB_matrix_palette/ARB_vertex_blendKarl Rasche
2003-11-30Fixed compiler warningsKarl Rasche
Assign the correct thing to TexturesUsed[]
2003-11-25fix a lot of warnings found with g++Brian Paul
2003-11-25 - New version of the syntax rules from Michal KrolKarl Rasche
+ Handles '1' as a float, just like '1.' + Remove switch collision between vp and fp #defines + result.color.xyz no longer requires result.color.primary.xyz
2003-11-25added support for generic vertex attributes (ARB_vp) and their error checkingKarl Rasche
2003-11-24whitespace and comment changesBrian Paul
2003-11-23- parse_alias() Was totally borkedKarl Rasche
- forgot a ++ in texSrcBit switch - copy/paste error in arbfragparse.c
2003-11-23 - Create a dummy program to keep from segfaulting when parsingKarl Rasche
fails - Change to grammar .emit to fix single LOCAL/ENV param usage
2003-11-21s/byte/GLubyte/ and other minor clean-upsBrian Paul
2003-11-21reformat comments for 80-column viewingBrian Paul
2003-11-21fix a bunch of warningsBrian Paul
2003-11-21 Committing in .Jouk Jansen
- Added arbparse.c to OpenVMS makefile - Added 2 type casts in a strcmp call to make my compiler happy. Modified Files: Mesa-newtree/src/mesa/main/arbparse.c Mesa-newtree/src/mesa/main/descrip.mms ----------------------------------------------------------------------
2003-11-21Caught missing parse_color_type() [Jacob Jansen]Karl Rasche
2003-11-19Initial checkin of new ARB_frag/vertex program parserKarl Rasche