summaryrefslogtreecommitdiff
path: root/src/mesa/shader/grammar.c
AgeCommit message (Collapse)Author
2004-12-08silence warningsAlan Hourihane
2004-10-20- speed up syntax parsing - the parser is now 4 times fasterMichal Krol
note: to use it you must use grammar_check_fast entry - allow decimal format for literal integers in .syn files - raise am error if syntax has duplicate or unreferenced symbols - do some little clean-up with linked-list stuff - make macro APPEND_CHARACTER a function - fix minor typos and bugs
2004-10-02fix indentationBrian Paul
2004-08-25Silence gcc 3.4 warnings on ReactOS. Mostly unused var warnings. (patch ↵Brian Paul
1015696)
2004-07-20fix compare w/ zero warnings (bug #988766)Brian Paul
2004-05-04Fix minor warnings found with g++.Brian Paul
2004-04-02add braces to silence warningsBrian Paul
2004-03-29fix the buildBrian Paul
2004-03-04Added missing Copyrights.Michal Krol
2004-03-03Grammar package supporting 8-bit registers.Michal Krol
TODO: - add checking for duplicate symbols (or is it done already?) - move all the statics (grammar objects list and last error message) to the GL context state; I think simple pointer initialized in a first call to ProgramString() is sufficent. - apply an optimized version of match() - this will be needed for glslang compiler.