Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-11-25 | slang/library: Don't need the *_gc.h files, they are autogenerated now. | Michal Krol | |
2009-11-25 | scons: Autogenerate GLSL builtin library *_gc.h from *.gc files. | Michal Krol | |
2009-11-23 | slang: Fix order of parameters to sl_pp_tokenise(). | Michal Krol | |
2009-11-21 | slang: No need to purify source text for tokeniser. | Michal Krol | |
2009-11-13 | slang: Report syntax parser errors. | Michal Krol | |
2009-11-13 | slang: Regenerate .gc files. | Michal Krol | |
2009-11-13 | slang: Get rid of the old syntax file and utilities. | Michal Krol | |
2009-11-13 | slang: Plug in the new syntax parser. | Michal Krol | |
2009-11-10 | slang: Update for glsl/pp interface changes. | Michal Krol | |
2009-09-23 | grammar: Include the correct glsl pp header. | Michal Krol | |
2009-09-22 | slang: Differentiate between uints and floats. | Michal Krol | |
2009-09-22 | grammar: Differentiate between uints and floats. | Michal Krol | |
2009-09-18 | slang: Use glsl pp public interface. | Michal Krol | |
2009-09-17 | Merge commit 'origin/master' into glsl-pp-rework-2 | Michal Krol | |
Conflicts: src/gallium/winsys/gdi/SConscript | |||
2009-09-16 | slang: Propagate error messages from preprocessor. | Michal Krol | |
2009-09-16 | slang: Invoke the preprocessor from withing the slang compiler. | Michal Krol | |
This allows us to validate the shader version number. | |||
2009-09-15 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
2009-09-15 | Merge branch 'mesa_7_5_branch' into mesa_7_6_branch | Brian Paul | |
2009-09-15 | ARB prog parser: regenerated file | Brian Paul | |
2009-09-15 | ARB prog parser: more detailed error message for out of bounds ADDR offsets | Brian Paul | |
2009-09-14 | glsl: added some link debug code (disabled) | Brian Paul | |
2009-09-14 | glsl: remove extra #version directives from concatenated shader sources | Brian Paul | |
When we concatenate shaders to do our form of poor-man linking, if there's multiple #version directives, preprocessing fails. This change disables the extra #version directives by changing the first two chars to //. This should help with some Wine issues such as bug 23946. | |||
2009-09-14 | grammar: Adapt to pp interface change. | Michal Krol | |
2009-09-14 | Merge commit 'origin/master' into glsl-pp-rework-2 | Michal Krol | |
2009-09-12 | mesa: remove unused SATURATE_PLUS_MINUS_ONE flag | Keith Whitwell | |
Never set in mesa. Remove from tgsi translation as well. | |||
2009-09-08 | slang: Correctly handle end of tokens marker. | Michal Krol | |
2009-09-08 | slang: Do not parse whitespace. | Michal Krol | |
The preprocessor tokeniser deals with those. | |||
2009-09-08 | slang: Correctly parse numbers from the new preprocessor. | Michal Krol | |
2009-09-08 | grammar: Fix token stripping. | Michal Krol | |
2009-09-08 | slang: Remove the old preprocessor. | Michal Krol | |
2009-09-08 | slang: Remove dependencies on error tokens. | Michal Krol | |
2009-09-07 | slang: Adapt shader syntax description to grammar parser changes. | Michal Krol | |
2009-09-07 | grammar: Adapt grammar to the glsl preprocessor. | Michal Krol | |
2009-09-07 | grammar: Remove dead code. | Michal Krol | |
2009-09-07 | grammar: Remove grammar_check(). | Michal Krol | |
2009-09-07 | mesa: Include <unistd.h> only when one is available. | Michal Krol | |
2009-09-04 | ARB prog: replace 'unsigned' with 'gl_state_index' | Brian Paul | |
Fixes compilation warnings with MSVC. | |||
2009-09-04 | ARB prog: rename POINT, SIZE to POINT_TOK, SIZE_TOK | Brian Paul | |
Fixes symbol collisions with typedefs in Microsoft headers. Perhaps we should prefix/suffix all the lexer tokens to avoid this. | |||
2009-09-01 | ARB prog parser: Fix handling of stateOptModMatNum | Ian Romanick | |
The optional array index should clearly be enclosed in square brackets. This helps the oglconform test vp_binding.c get a bit farther, but it still fails. | |||
2009-08-31 | mesa: debug printf for KIL | Brian Paul | |
2009-08-27 | Merge branch 'mesa_7_5_branch' | Brian Paul | |
2009-08-27 | mesa: direct program debug output to stderr instead of stdout | marvin24 | |
2009-08-27 | mesa: move decls before code | Vinson Lee | |
2009-08-26 | Merge branch 'mesa_7_5_branch' | Brian Paul | |
2009-08-26 | glsl: asst. clean-ups in set_program_uniform() | Brian Paul | |
Remove redunant type check for samplers (assert instead). Move some local vars. Update comments. | |||
2009-08-26 | glsl: signal that the program needs to be re-translated when samplers change | Brian Paul | |
2009-08-26 | mesa: var renaming, new assertion | Brian Paul | |
2009-08-26 | mesa: additional instruction field size assertions | Brian Paul | |
2009-08-26 | Merge branch 'mesa_7_5_branch' | Brian Paul | |
2009-08-26 | glsl: fix bug in sampler array indexing | Brian Paul | |
Need to add the 'offset' parameter when indexing the parameter array. Before, if we were setting arrays of samplers, we were actually only setting the 0th sampler's value. Because of how progs/glsl/samplers.c is constructed, this wasn't showing up as a failure in the samplers_array output. |