aboutsummaryrefslogtreecommitdiffstats
path: root/src/glsl/ast_to_hir.cpp
Commit message (Expand)AuthorAgeFilesLines
* glsl: Add error checking for applying interpolation qualifiers to other vars.Eric Anholt2012-01-101-0/+23
* glsl: Don't mark assignment temporaries as read-onlyIan Romanick2012-01-061-5/+0
* glsl: Emit errors for assignments to non-l-value expressionsIan Romanick2012-01-061-7/+22
* glsl: Track descriptions of some expressions that can't be l-valuesIan Romanick2012-01-061-0/+5
* glsl: Don't use base type for bit-not when there's an errorIan Romanick2012-01-041-1/+1
* glsl: finish up ARB_conservative_depth (v2)Marek Olšák2011-11-221-3/+7
* glsl: Generate IR for switch statementsDan McCabe2011-11-071-42/+244
* glsl: Reference data structure ctors in grammarDan McCabe2011-11-071-0/+54
* linker: Check that initializers for global variables matchIan Romanick2011-11-031-0/+3
* glsl: Fix type mismatch when incrementing or decrementing uint.Paul Berry2011-11-021-8/+24
* glsl: Clean-up spurious error message on bad structure definitionsIan Romanick2011-10-281-6/+24
* glsl: Generate an error for array-of-array declarationsIan Romanick2011-10-281-2/+14
* glsl: Distinguish between no interpolation qualifier and 'smooth'Paul Berry2011-10-271-1/+3
* mesa: Expose GLSL interpolation qualifiers in gl_fragment_program.Paul Berry2011-10-271-4/+4
* glsl: Remove version check when looking for identifiers containing "__".Jason Wood2011-10-061-2/+1
* glsl: Consider "__" in identifers as reserved.Eric Anholt2011-10-051-0/+13
* glsl: Defer initialization of built-in functions until they're needed.Kenneth Graunke2011-09-231-1/+0
* glsl: Remove field array_lvalue from ir_variable.Paul Berry2011-09-141-19/+20
* glsl: Silence several "warning: unused parameter"Ian Romanick2011-09-091-0/+6
* glsl: Clarify error message about whole-array assignment in GLSL 1.10.Eric Anholt2011-09-081-6/+25
* glsl: When assiging from a whole array, mark it as used.Eric Anholt2011-09-081-0/+1
* glsl: Check that gl_ClipDistance[] is not sized too large.Paul Berry2011-09-081-0/+15
* glsl: Rework oversize array check for gl_TexCoord.Paul Berry2011-09-081-12/+33
* glsl: When assigning to a whole array, mark the array as accessed.Eric Anholt2011-08-151-10/+11
* glsl: Check array size is const before asserting that no IR was generated.Paul Berry2011-08-081-5/+8
* glsl: Emit function signatures at toplevel, even for built-ins.Paul Berry2011-08-081-17/+14
* glsl: empty declarations should be validChia-I Wu2011-08-051-5/+5
* glsl: Reject shaders that contain static recursionIan Romanick2011-07-201-0/+2
* glsl: Ensure that sampler declarations are always uniform or "in" parameters.Paul Berry2011-07-181-0/+35
* glsl: Distinguish "type mismatch" error messages for modulus operator.Kenneth Graunke2011-06-291-3/+11
* glsl: permit explicit locations on fragment shader outputs, not inputsPaul Berry2011-06-281-1/+1
* glsl/ast_to_hir: Only use the local 'type' variable as a temporary.Kenneth Graunke2011-04-201-20/+4
* glsl: Emit a warning when the left-hand operand of a comma has no effectIan Romanick2011-04-181-1/+35
* glsl: Perform type checking on "^^" operands.Eric Anholt2011-04-131-3/+10
* glsl: When we've emitted a semantic error for ==, return a bool constant.Eric Anholt2011-04-131-3/+7
* glsl: Semantically check the RHS of `||' even when short-circuiting.Eric Anholt2011-04-131-6/+5
* glsl: Semantically check the RHS of `&&' even when short-circuiting.Eric Anholt2011-04-131-6/+6
* glsl: Avoid cascading errors when looking for a scalar boolean and failing.Eric Anholt2011-04-131-76/+48
* glsl: Accept precision qualifiers on sampler types, but only in ES.Kenneth Graunke2011-03-261-2/+9
* glsl: Fix off-by-one error setting max_array_access for non-constant indexingIan Romanick2011-03-251-1/+1
* glsl: Only allow unsized array assignment in an initializerIan Romanick2011-03-151-14/+17
* glsl: Process redeclarations before initializersIan Romanick2011-03-041-43/+44
* glsl: Refactor AST-to-HIR code handling variable initializersIan Romanick2011-03-041-108/+125
* glsl: Refactor AST-to-HIR code handling variable redeclarationsIan Romanick2011-03-041-113/+133
* glsl: Use reralloc instead of plain realloc.Kenneth Graunke2011-02-281-5/+3
* glsl: Set operators '%' and '%=' to be reserved when GLSL < 1.30Chad Versace2011-02-081-0/+7
* Convert everything from the talloc API to the ralloc API.Kenneth Graunke2011-01-311-2/+2
* glsl: Propagate depth layout qualifier from AST to IRChad Versace2011-01-261-0/+64
* glsl: Don't assert when the value returned by a function has no rvalueIan Romanick2011-01-221-13/+12
* glsl: Improve error message when read-only vars are writtenChad Versace2011-01-211-1/+8