summaryrefslogtreecommitdiff
path: root/src/glsl/ast_to_hir.cpp
AgeCommit message (Expand)AuthorFilesLines
2011-07-19glsl: Ensure that sampler declarations are always uniform or "in" parameters.Paul Berry1-0/+35
2011-07-07glsl: 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
2010-12-10glsl: Inherrit type of declared variable from initializer after processing as...Ian Romanick1-8/+17
2010-12-10glsl: Minor clean-up in validate_assignmentIan Romanick1-6/+3
2010-12-08glsl: In ast_to_hir, check sampler array indexingChad Versace1-0/+14
2010-12-07glsl: Inherrit type of declared variable from initializerIan Romanick1-0/+18
2010-12-07glsl: Ensure that equality comparisons don't return a NULL IR treeIan Romanick1-16/+19
2010-12-06glsl: Factor out code which emits a new function into the IR stream.Kenneth Graunke1-18/+22
2010-12-01glsl: Mark the array access for whole-array comparisons.Eric Anholt1-0/+14
2010-11-30glsl: Quiet unreachable no-return-from-function warning.Eric Anholt1-0/+2
2010-11-30glsl: Fix structure and array comparisions.Eric Anholt1-2/+70
2010-11-29glsl: Make the symbol table's add_variable just use the variable's name.Eric Anholt1-2/+2
2010-11-29glsl: Make the symbol table's add_function just use the function's name.Eric Anholt1-1/+1
2010-11-17glsl: Fix erroneous cast in ast_jump_statement::hir()Chad Versace1-2/+1