summaryrefslogtreecommitdiff
path: root/src/mesa/shader/slang
AgeCommit message (Collapse)Author
2008-08-04mesa: glsl: regenerated filesBrian Paul
2008-08-04mesa: glsl: added vec4(ivec4) constructorBrian Paul
2008-08-04mesa: glsl: if/while/do condition must be booleanBrian Paul
2008-08-04mesa: glsl: additional type checking for ?: and = operatorsBrian Paul
2008-08-04mesa: glsl: don't allow comparision of arraysBrian Paul
2008-08-04mesa: glsl: error on const-qualified array declarationsBrian Paul
2008-08-04mesa: glsl: added null ptr checkBrian Paul
2008-08-04mesa: glsl: set literal_size for const varsBrian Paul
2008-08-04mesa: glsl: add missing code emit for struct/fieldBrian Paul
2008-08-04mesa: glsl: stop code emit after error is recordedBrian Paul
2008-08-04mesa: glsl: check that rhs of const var initializer is also constBrian Paul
2008-08-04mesa: glsl: handle user-defined const vars in expression simplificationBrian Paul
2008-08-04mesa: glsl: fix initialize size error checkBrian Paul
2008-08-04mesa: glsl: added initializer size/type error checkingBrian Paul
2008-08-04mesa: glsl: only allow one #version directiveBrian Paul
2008-08-04mesa: glsl: regenerated fileBrian Paul
2008-08-04mesa: glsl: new bvec4 constructorBrian Paul
2008-07-29mesa: glsl: remove old assertion (fixes glsl/bitmap.c)Brian Paul
2008-07-29mesa: disable debug codeBrian Paul
2008-07-25mesa: glsl: assorted fixes for resolving polymorphic functionsBrian Paul
Plus, - fix some issues in casting function arguments to format param types. - fix some vec/mat constructor bugs - find/report more syntax/semantic errors
2008-07-25mesa: regenerated filesBrian Paul
2008-07-25mesa: glsl: re-order some constructorsBrian Paul
2008-07-25mesa: glsl: remove unneeded operatorsBrian Paul
2008-07-25mesa: glsl: additional error detectionBrian Paul
Plus begin some fixes for vec/matrix constructors.
2008-07-24mesa: gls: fix broken else clause of conditional break/continueBrian Paul
In the following case: for () { if (cond) break; // or continue; else something; } The "something" block didn't get emitted.
2008-07-24mesa: glsl: only try to link shaders defining main()Brian Paul
2008-07-24mesa: Prefix main includes with dir to avoid conflicts.José Fonseca
Some of the headers in src/mesa/main have pretty common names which easily conflict with third-party code, e.g. config.h
2008-07-24mesa: Silence compiler warning on windows.Michal Krol
2008-07-23mesa: glsl: fix/simplify built-in constant lookupBrian Paul
2008-07-23mesa: glsl: fix/simplify array element handlingBrian Paul
Also fix bug in comparing large structs/arrays.
2008-07-23mesa: glsl: mark constructor params as constBrian Paul
2008-07-22mesa: glsl: rework swizzle storage handlingBrian Paul
Build on the heirarchal approach implemented for arrays/structs.
2008-07-22mesa: fix uninitialized varBrian Paul
2008-07-22mesa: glsl: implement constructor functions for user-defined typesBrian Paul
2008-07-21mesa: initial support for GLSL struct/array comparisonsBrian Paul
2008-07-21mesa: added null ptr check (error handling case)Brian Paul
2008-07-21mesa: fix +=, -=, etc. operatorsBrian Paul
2008-07-21mesa: assorted glsl uniform/attribute fixesBrian Paul
Fix incorrect uniform/attribute size query results. Add missing error checking for glUniform, glUniformMatrix params Fix an array size/allocation error.
2008-07-21mesa: remove debug codeBrian Paul
2008-07-18mesa: glsl: various writemask/swizzle improvements and clean-upsBrian Paul
2008-07-18mesa: rework array/struct addressing code.Brian Paul
The slang_ir_storage type now has a pointer to parent storage to represent storage of an array element within an array, or a field within a struct. This fixes some problems related to addressing of fields/elements in non- trivial cases. More work to follow.
2008-07-18mesa: regenerated fileBrian Paul
2008-07-18mesa: fix some GLSL /= int operatorsBrian Paul
plus add a few more special constructors to improve code quality.
2008-07-17mesa: regenerated fileBrian Paul
2008-07-17mesa: fix/improve the atan(y,x) functionBrian Paul
2008-07-16mesa: fix temp re-use bug in emit_arith()Brian Paul
2008-07-16mesa: regenerated filesBrian Paul
2008-07-16mesa: fix copy&paste errors in degrees() functionsBrian Paul
2008-07-16mesa: implement grammar/parsing for precision/invariant syntaxBrian Paul
Plus, fix some issues with pre-defined preprocessor symbols and version checking.
2008-07-16mesa: Silence compiler warnings on Windows.Michal Krol