summaryrefslogtreecommitdiff
path: root/src/glsl/ast_to_hir.cpp
AgeCommit message (Expand)AuthorFilesLines
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
2010-10-25glsl: Fix ast-to-hir for ARB_fragment_coord_conventionsChad Versace1-1/+1
2010-10-20glsl: Remove useless ir_shader enumeration value.Kenneth Graunke1-5/+1
2010-10-20glsl: Add assert for unhandled ir_shader case.Vinson Lee1-0/+4
2010-10-19glsl: Implement ast-to-hir for bit-logic opsChad Versace1-4/+12
2010-10-19glsl: Define bit_logic_result_type() in ast_to_hir.cppChad Versace1-32/+67
2010-10-19glsl: Implement ast-to-hir for bit-shift-assignmentChad Versace1-4/+12
2010-10-19glsl: Define shift_result_type() in ast_to_hir.cppChad Versace1-41/+67
2010-10-18glsl: Don't return NULL IR for erroneous bit-shift operators.Kenneth Graunke1-5/+0
2010-10-15glsl: Implement ast-to-hir for binary shifts in GLSL 1.30Chad Versace1-3/+58
2010-10-08glsl: Add linker support for explicit attribute locationsIan Romanick1-3/+15
2010-10-08glsl: Track explicit location in AST to IR translationIan Romanick1-0/+47
2010-10-08glsl: Wrap ast_type_qualifier contents in a struct in a unionIan Romanick1-30/+33
2010-09-18glsl: Properly handle nested structure types.Kenneth Graunke1-25/+6
2010-09-16glsl: Change from has_builtin_signature to has_user_signature.Kenneth Graunke1-1/+1
2010-09-13glsl: introduce ir_binop_all_equal and ir_binop_any_equal, allow vector cmpsLuca Barbieri1-2/+2
2010-09-07ast_to_hir: Mark arrays as lvalues in GLSL ES, but prohibit assignment.Kenneth Graunke1-1/+7
2010-09-07glsl: Allow overloading of built-ins without hiding in GLSL ES.Kenneth Graunke1-1/+1