summaryrefslogtreecommitdiff
path: root/src/glsl/cl
AgeCommit message (Collapse)Author
2010-06-04glsl: Recject rect samplers when GL_ARB_texture_rectangle is disabledKristian Høgsberg
2010-02-25glsl: implement support for GL_EXT_texture_arrayBrian Paul
GL_EXT_texture_array is different from the existing GL_MESA_texture_array support in that the former is only supported for GLSL, not fixed-function. The shadow compare versions of the sampler functions haven't been tested yet. The non-shadow versions have been tested with a new piglit test.
2010-02-21glsl/cl: Prevent possible buffer overflow.Vinson Lee
2010-02-20glsl/cl: Prevent possible string overflow.Vinson Lee
2010-02-17glsl/cl: Parse layout qualifiers only when an appropriate extension enabled.Michal Krol
2010-02-17glsl/cl: Properly emit layout qualifier list.Michal Krol
2010-02-13glsl/cl: implement parsing for layout qualifiersBrian Paul
For GL_ARB_fragment_coord_conventions support.
2010-01-18glsl: remove __inline directiveBrian Paul
It makes no difference with gcc -O3, for example.
2009-12-29glsl: added default case in _fetch_token() to silence warningsBrian Paul
2009-12-20glsl: Do syntax parsing inline with processing.Michal Krol
2009-12-10scons: Get GLSL code building correctly when cross compiling.José Fonseca
This is quite messy. GLSL code has to be built twice: one for the host OS, another for the target OS.
2009-12-10glsl/sl: fix _parse_boolconstant()Brian Paul
Need to emit the radix before the digits. This fixes several glean/glgl1 regressions.
2009-12-10glsl/cl: silence unused var warningBrian Paul
2009-12-10Build mesa glsl with make.michal
Still don't know how to add glsl to mesa dependencies.
2009-11-13glsl/cl: Add simple error reporting.Michal Krol
2009-11-13glsl/cl: Add a hard-coded syntax parser.Michal Krol