aboutsummaryrefslogtreecommitdiffstats
path: root/src/glsl/ast_to_hir.cpp
Commit message (Expand)AuthorAgeFilesLines
* glsl: fix crash with variable indexing into array in a structAras Pranckevicius2010-08-251-1/+7
* glsl: Include main/core.h.Chia-I Wu2010-08-241-2/+1
* glsl: When unable to assign the initializer for a const variable, set it to 0.Eric Anholt2010-08-231-13/+21
* glsl: Cleanly fail when a function has an unknown return type.Eric Anholt2010-08-231-1/+7
* glsl: Trim the size of uniform arrays to the maximum element used.Eric Anholt2010-08-231-0/+5
* glsl: Silence unused variable warning.Vinson Lee2010-08-211-0/+1
* glsl: Handle array declarations in function parameters.Kenneth Graunke2010-08-211-4/+13
* ast_to_hir: Reject function names that start with "gl_".Kenneth Graunke2010-08-201-0/+12
* ast_to_hir: Fix crash when a function shadows a variable.Kenneth Graunke2010-08-201-2/+3
* glsl: Fix scoping bug in if statements.Kenneth Graunke2010-08-181-2/+8
* glsl2: Remove unnecessary use of 'struct' before type namesIan Romanick2010-08-131-5/+5
* glsl2: Don't declare a variable called sig that shadows the other oneIan Romanick2010-08-111-1/+1
* glsl2: Insert global declarations at the top of the instruction stream.Eric Anholt2010-08-051-1/+8
* glsl2: Remove the shader_in/shader_out tracking separate from var->mode.Eric Anholt2010-08-041-27/+10
* glsl2: Don't try to construct an ir_assignment with an invalid LHSIan Romanick2010-08-041-3/+2
* glsl2: Make the clone() method take a talloc context.Eric Anholt2010-08-041-5/+5
* glsl2: Fix stack smash when ternary selection is used.Aras Pranckevicius2010-07-311-1/+1
* glsl2: Fix spelling of "initializer."Eric Anholt2010-07-291-4/+5
* glsl2: Add support for redeclaring layout of gl_FragCoord for ARB_fcc.Eric Anholt2010-07-281-2/+13
* glsl2: Perform some semantic checking of ARB_fcc layout qualifiersIan Romanick2010-07-281-0/+13
* glsl2: Put side effects of the RHS of logic_or in the right branch.Eric Anholt2010-07-221-1/+1
* glsl2: When setting the size of an unsized array, set its deref's size too.Eric Anholt2010-07-221-0/+1
* glsl2: Fix expected type for multiplying vector with non-square matrix.Carl Worth2010-07-221-4/+22
* glsl2: When a "continue" happens in a "for" loop, run the loop expression.Eric Anholt2010-07-221-0/+14
* ast_to_hir: Fix bug in constant initializers.Kenneth Graunke2010-07-211-0/+10
* glsl: Correctly handle unary plus operator.Carl Worth2010-07-211-3/+3
* glsl2: glsl_type has its own talloc context, don't pass one inIan Romanick2010-07-201-3/+2
* glsl2: Add and use new variable mode ir_var_temporaryIan Romanick2010-07-201-11/+15
* glsl2: talloc the glsl_struct_field[] we use to look up structure types.Eric Anholt2010-07-201-2/+2
* glsl2: Disallow non-constant array indexing for unsized arrays.Kenneth Graunke2010-07-201-0/+2
* glsl2: Move temp declaration to correct side of if-statement in IRIan Romanick2010-07-121-7/+7
* glsl2: Add declarations for temporaries to instruction streamIan Romanick2010-07-121-0/+3
* glsl2: Remove generate_temporary and global temporary counter.Kenneth Graunke2010-07-081-27/+5
* glsl2: Actually add the declaration of _post_incdec_temp.Eric Anholt2010-07-071-0/+1
* glsl2: Put the initializer in the instruction stream after the declarationIan Romanick2010-07-071-2/+11
* Revert "glsl2: Put the declaration in the instruction stream before its initi...Ian Romanick2010-07-071-2/+2
* glsl2: Put the declaration in the instruction stream before its initializer.Eric Anholt2010-07-061-2/+2
* glsl2: Clone methods return the type of the thing being clonedIan Romanick2010-07-061-5/+5
* glsl2: Support AST-to-IR translation of invariant keywordIan Romanick2010-07-011-14/+70
* glsl2: Don't bounds check unsize array redeclarationsIan Romanick2010-07-011-1/+1
* glsl2: Add gl_MaxTextureCoordsIan Romanick2010-07-011-8/+4
* glsl2: Default delcaration of gl_TexCoord is unsizedIan Romanick2010-07-011-1/+18
* glsl2: Change order of semaintic checks on variable declarationsIan Romanick2010-07-011-61/+61
* glsl2: Implement AST->HIR support for the "discard" instruction.Kenneth Graunke2010-06-301-1/+1
* glsl2: Fix storing of dead memory in the symbol table.Kenneth Graunke2010-06-301-2/+2
* glsl2: Use _mesa_glsl_parse_state as the talloc parent, not glsl_shader.Kenneth Graunke2010-06-301-11/+11
* glsl2: Keep the same number of components in implicit conversions.Kenneth Graunke2010-06-291-0/+6
* glsl_type: Add get_record_instance methodIan Romanick2010-06-291-2/+2
* glsl_type: Remove vector and matrix constructor generatorsIan Romanick2010-06-291-1/+0
* glsl2: Check for non-void functions that don't have a return statement.Kenneth Graunke2010-06-291-0/+10