summaryrefslogtreecommitdiffstats
path: root/src/mesa/shader/program_parse.tab.h
Commit message (Collapse)AuthorAgeFilesLines
* ARB prog parser: include variable name in error textBrian Paul2009-11-041-126/+25
|
* ARB prog parser: regenerated filesBrian Paul2009-10-301-1/+1
|
* Merge branch 'mesa_7_6_branch'Brian Paul2009-10-281-25/+126
|\ | | | | | | | | | | | | Conflicts: src/mesa/shader/lex.yy.c src/mesa/shader/program_lexer.l
* | Merge branch 'master' into asm-shader-rework-2Ian Romanick2009-09-101-3/+3
|\| | | | | | | | | | | | | Conflicts: src/mesa/shader/lex.yy.c src/mesa/shader/program_parse.tab.c src/mesa/shader/program_parse.tab.h
| * ARB prog: replace 'unsigned' with 'gl_state_index'Brian Paul2009-09-041-1/+1
| | | | | | | | Fixes compilation warnings with MSVC.
| * ARB prog: rename POINT, SIZE to POINT_TOK, SIZE_TOKBrian Paul2009-09-041-2/+2
| | | | | | | | | | Fixes symbol collisions with typedefs in Microsoft headers. Perhaps we should prefix/suffix all the lexer tokens to avoid this.
* | ARB prog parser: Differentiate between used and unused names in the lexerIan Romanick2009-09-101-8/+9
| | | | | | | | | | The lexer will return IDENTIFIER only when the name does not have an associated symbol. Otherwise USED_IDENTIFIER is returned.
* | ARB prog parser: Add new constructor for asm_instructionIan Romanick2009-09-041-1/+1
| | | | | | | | | | The new constructor copies fields from the prog_instruction that the parser expects the lexer to set.
* | NV fp lexer: Add new opcodesIan Romanick2009-08-311-85/+86
|/
* ARB prog parser: Add support for RGBA components to SWZ instruction in fpIan Romanick2009-07-301-1/+8
|
* ARB prog parser: Add support for GL_MESA_texture_arrayIan Romanick2009-07-271-12/+16
| | | | This isn't really tested yet as no drivers actually support this extension.
* ARB prog parser: Add support for GL_ARB_fragment_program_shadowIan Romanick2009-07-271-12/+15
| | | | | Passes the piglit asmparsertest shadow-0[123].txt tests and progs/demos/shadowtex.
* parser: Clean up a bunch of silly compiler warningsIan Romanick2009-07-221-1/+1
|
* ARB_fp/vp: Initial import of new ARB vp/fp assemblerIan Romanick2009-07-201-0/+193
This still needs quite a bit of work, but a bunch of the programs in progs/vp produce correct results.