summaryrefslogtreecommitdiff
path: root/src/glsl/ast_to_hir.cpp
AgeCommit message (Expand)AuthorFilesLines
2011-09-14glsl: Remove field array_lvalue from ir_variable.Paul Berry1-19/+20
2011-09-09glsl: Silence several "warning: unused parameter"Ian Romanick1-0/+6
2011-09-08glsl: Clarify error message about whole-array assignment in GLSL 1.10.Eric Anholt1-6/+25
2011-09-08glsl: When assiging from a whole array, mark it as used.Eric Anholt1-0/+1
2011-09-08glsl: Check that gl_ClipDistance[] is not sized too large.Paul Berry1-0/+15
2011-09-08glsl: Rework oversize array check for gl_TexCoord.Paul Berry1-12/+33
2011-08-15glsl: When assigning to a whole array, mark the array as accessed.Eric Anholt1-10/+11
2011-08-08glsl: Check array size is const before asserting that no IR was generated.Paul Berry1-5/+8
2011-08-08glsl: Emit function signatures at toplevel, even for built-ins.Paul Berry1-17/+14
2011-08-05glsl: empty declarations should be validChia-I Wu1-5/+5
2011-07-20glsl: Reject shaders that contain static recursionIan Romanick1-0/+2
2011-07-18glsl: Ensure that sampler declarations are always uniform or "in" parameters.Paul Berry1-0/+35
2011-06-29glsl: Distinguish "type mismatch" error messages for modulus operator.Kenneth Graunke1-3/+11
2011-06-28glsl: permit explicit locations on fragment shader outputs, not inputsPaul Berry1-1/+1
2011-04-20glsl/ast_to_hir: Only use the local 'type' variable as a temporary.Kenneth Graunke1-20/+4
2011-04-18glsl: Emit a warning when the left-hand operand of a comma has no effectIan Romanick1-1/+35
2011-04-13glsl: Perform type checking on "^^" operands.Eric Anholt1-3/+10
2011-04-13glsl: When we've emitted a semantic error for ==, return a bool constant.Eric Anholt1-3/+7
2011-04-13glsl: Semantically check the RHS of `||' even when short-circuiting.Eric Anholt1-6/+5
2011-04-13glsl: Semantically check the RHS of `&&' even when short-circuiting.Eric Anholt1-6/+6
2011-04-13glsl: Avoid cascading errors when looking for a scalar boolean and failing.Eric Anholt1-76/+48
2011-03-26glsl: Accept precision qualifiers on sampler types, but only in ES.Kenneth Graunke1-2/+9
2011-03-25glsl: Fix off-by-one error setting max_array_access for non-constant indexingIan Romanick1-1/+1
2011-03-15glsl: Only allow unsized array assignment in an initializerIan Romanick1-14/+17
2011-03-04glsl: Process redeclarations before initializersIan Romanick1-43/+44
2011-03-04glsl: Refactor AST-to-HIR code handling variable initializersIan Romanick1-108/+125
2011-03-04glsl: Refactor AST-to-HIR code handling variable redeclarationsIan Romanick1-113/+133
2011-02-28glsl: Use reralloc instead of plain realloc.Kenneth Graunke1-5/+3
2011-02-08glsl: Set operators '%' and '%=' to be reserved when GLSL < 1.30Chad Versace1-0/+7
2011-01-31Convert everything from the talloc API to the ralloc API.Kenneth Graunke1-2/+2
2011-01-26glsl: Propagate depth layout qualifier from AST to IRChad Versace1-0/+64
2011-01-22glsl: Don't assert when the value returned by a function has no rvalueIan Romanick1-13/+12
2011-01-21glsl: Improve error message when read-only vars are writtenChad Versace1-1/+8
2011-01-21glsl: Mark 'in' variables at global scope as read-onlyChad Versace1-1/+2
2011-01-18glsl: Fix segfault due to missing printf argumentChad Versace1-1/+2
2011-01-18glsl: Fix semantic checks on precision qualifiersChad Versace1-9/+8
2011-01-17glsl: Add support for default precision statementsChad Versace1-0/+52
2011-01-17glsl: Add semantic checks for precision qualifiersChad Versace1-0/+33
2011-01-17glsl: Check that 'centroid in' does not occur in vertex shaderChad Versace1-0/+13
2011-01-17glsl: Check that interpolation quals only apply to vertex ins and fragment outsChad Versace1-0/+35
2011-01-17glsl: Check that interpolation qualifiers do not precede 'varying'Chad Versace1-0/+26
2011-01-13glsl: Emit errors or warnings when 'layout' is used with 'attribute' or 'vary...Ian Romanick1-0/+46
2011-01-13glsl: Allow 'in' and 'out' when 'layout' is also availableIan Romanick1-2/+5
2011-01-12glsl: Track variable usage, use that to enforce semanticsIan Romanick1-2/+16
2011-01-10glsl: Disallow 'in' and 'out' on globals in GLSL 1.20Ian Romanick1-5/+5
2011-01-06glsl: Support the 'invariant(all)' pragmaIan Romanick1-0/+17
2011-01-06glsl: Allow less restrictive uses of sampler array indexing in GLSL <= 1.20Ian Romanick1-4/+24
2011-01-04glsl: Check that integer vertex outputs are qualified with flatChad Versace1-0/+19
2011-01-04glsl: Allow redeclaration of gl_Color and its variants in GLSL 1.30Chad Versace1-0/+21
2011-01-01glsl: Remove unused "instructions" parameter.Kenneth Graunke1-1/+1