glcpp: Add generated source files.
[mesa.git] / src / glsl /
2010-07-28 Carl Worthglcpp: Add generated source files.
2010-07-28 Carl Worthglsl: Ignore glsl_compiler and glsl_parser.output files.
2010-07-28 Carl Worthglsl: Add generated files from flex/bison.
2010-07-28 Carl Worthglcpp: Add expected output for a recently-added test.
2010-07-28 Eric Anholtglsl2: Add the remaining builtin uniforms.
2010-07-28 Eric Anholtglsl2: Size builtin arrays according to the context...
2010-07-28 Carl Worthglcpp: Explicitly expect 0 shift/reduce conflicts.
2010-07-28 Carl Worthglcpp: Remove 2 shift/reduce conflicts from the grammar.
2010-07-27 Eric Anholtglsl2: When stealing var->constant_value, steal its...
2010-07-27 Eric Anholtglsl2: Actually use the linked dead code eliminator.
2010-07-27 Eric Anholtglsl2: Don't dereference a NULL var in CE handling...
2010-07-27 Eric Anholtglsl2: Use ir_dead_code's linked version after linking.
2010-07-27 Eric Anholtglsl2: Fix the linked version of ir_dead_code.
2010-07-27 Eric Anholtglsl2: Make the dead code handler make its own talloc...
2010-07-27 Eric Anholtglsl2: Talloc type names.
2010-07-27 Eric Anholtglsl2: Add optimization pass for algebraic simplifications.
2010-07-27 Eric Anholtir_validate: Check the types of expression operations.
2010-07-27 Eric Anholtglsl2: Fix missing visit_continue return in ir_validate.
2010-07-27 Eric Anholtglsl2: Also steal the constant components of aggregate...
2010-07-27 Kenneth Graunkeglsl2: Steal ir_variable's constant_value field.
2010-07-27 Eric Anholtglsl2: Remove old .gitignore file from when we were...
2010-07-27 Eric AnholtMerge remote branch 'origin/master' into glsl2
2010-07-23 Kenneth Graunkeir_constant_expression: Fix broken code for floating...
2010-07-22 Kenneth Graunkeglsl2: Refresh autogenerated file builtin_function...
2010-07-22 Kenneth Graunkeglsl2/builtins: Add 1.30 bvec variant of the "mix"...
2010-07-22 Kenneth Graunkeglsl2/builtins: Fix 1.30 sign implementation for ints.
2010-07-22 Kenneth Graunkeglsl2/builtins: Fix "mod" builtin to use scalar/vector...
2010-07-22 Kenneth Graunkeglsl2: Initialize ir_instruction::type and ir_rvalue...
2010-07-22 Kenneth Graunkeglsl2: Make ir_assignment derive from ir_instruction...
2010-07-22 Kenneth Graunkeglsl2: Fix standalone compiler to not crash horribly.
2010-07-22 Kenneth Graunkeir_print_visitor: Add "temporary" to mode string printing.
2010-07-22 Carl Worthglcpp: Fix function-like macros with an argument used...
2010-07-22 Eric Anholtglsl2: Put side effects of the RHS of logic_or in the...
2010-07-22 Eric Anholtglsl2: Validate that ir_if conditions are actually...
2010-07-22 Eric Anholtglsl2: When setting the size of an unsized array, set...
2010-07-22 Eric Anholtglsl2: Set the type on cloned tex instructions.
2010-07-22 Eric Anholtglsl2: Add the API defines to the glsl2 build so we...
2010-07-22 Eric Anholtglsl2: Fix builtin prototypes defined in multiple glsl...
2010-07-22 Carl Worthglsl2: Fix expected type for multiplying vector with...
2010-07-22 Eric Anholtglsl2: Fix the type of (1.0 - arg2) for mix(gen, gen...
2010-07-22 Eric Anholtglsl2: When inlining, don't clone and assign sampler...
2010-07-22 Eric Anholtglsl2: When a "continue" happens in a "for" loop, run...
2010-07-21 Kenneth Graunkeglsl2: Update TODO.
2010-07-21 Kenneth Graunkeir_constant_expression: Add support for array == and !=.
2010-07-21 Kenneth Graunkeir_constant_expression: Add support for constant arrays.
2010-07-21 Kenneth Graunkeir_reader: Add support for reading constant arrays.
2010-07-21 Kenneth Graunkeir_print_visitor: Print out constant arrays.
2010-07-21 Kenneth Graunkeir_print_visitor: Remove commas between ir_constant...
2010-07-21 Kenneth Graunkeglsl2: Extend ir_constant to store constant arrays...
2010-07-21 Kenneth Graunkeglsl2: Emit array constructors inline.
2010-07-21 Kenneth Graunkeast_to_hir: Fix bug in constant initializers.
2010-07-21 Kenneth Graunkeir_constant_expression: Add support for ir_unop_u2f.
2010-07-21 Kenneth Graunkeir_constant_expression: Remove open coded equality...
2010-07-21 Kenneth Graunkeglsl2: Add some comments.
2010-07-21 Kenneth Graunkeglsl2: Replace insert_before/remove pairs with exec_nod...
2010-07-21 Ian Romanicklinker: Link built-in functions instead of including...
2010-07-21 Ian Romanickglsl2: Add function to import function prototypes from...
2010-07-21 Carl Worthglsl: Fix missing initialization of yylloc.source
2010-07-21 Carl Worthglsl: Correctly handle unary plus operator.
2010-07-21 Ian Romanickglsl2: glsl_type has its own talloc context, don't...
2010-07-21 Ian Romanicklinker: Do post-link lowering and optimization
2010-07-21 Ian Romanickglsl2: Implement utility routine to talloc reparent...
2010-07-21 Ian Romanickglsl2: Add a constructor for _mesa_glsl_parse_state
2010-07-21 Ian Romanickglsl2: Add and use new variable mode ir_var_temporary
2010-07-21 Eric Anholtglsl2: Check that nodes in a valid tree aren't error...
2010-07-21 Eric Anholtglsl2: strdup the field names used in dereference_record.
2010-07-21 Eric Anholtglsl2: talloc the glsl_struct_field[] we use to look...
2010-07-21 Eric Anholtglsl2: Don't claim a match on structure types with...
2010-07-21 Kenneth Graunkeglsl2: Add support for the .length() method on arrays.
2010-07-21 Kenneth Graunkeglsl2: Remove incorrect assertion in the parser.
2010-07-21 Kenneth Graunkeglsl2: Disallow non-constant array indexing for unsized...
2010-07-21 Kenneth Graunkeir_constant_expression: Remove pointless use of variabl...
2010-07-21 Kenneth Graunkeir_constant_expression: Use "this" pointer directly.
2010-07-21 Kenneth Graunkeir_constant_expression: Convert from a visitor to a...
2010-07-21 Kenneth Graunkeglsl2: Move constant_expression_value method to ir_rvalue.
2010-07-21 Carl Worthglcpp: Avoid accidental token pasting in preprocessed...
2010-07-21 Carl Worthglcpp: Add missing include in xtalloc.c
2010-07-21 Carl Worthglcpp: Add static keyword to several functions in the...
2010-07-21 Carl Worthglcpp: Avoid warnings in generated flex code.
2010-07-21 Carl Worthglcpp-lex: Declare some generated functions to eliminat...
2010-07-21 Carl Worthglcpp: Fix support for nested #ifdef and nested #ifndef
2010-07-21 Carl Worthglcpp: Support #if(expression) with no intervening...
2010-07-21 Carl Worthglcpp: Fix use-after-free error from #undef directive.
2010-07-21 Carl Worthglcpp: Make test suite test for valgrind cleanliness.
2010-07-21 Carl Worthglcpp: Make test suite report final count of passed...
2010-07-21 Carl WorthBuild a standalone glcpp binary.
2010-07-21 Carl Worthglcpp: Delete copies of hash_table.c, hash_table.h...
2010-07-20 Eric Anholtglsl2: Fix handling of out values in function inlining.
2010-07-20 Eric Anholtglsl2: Don't mark a variable as constant if it was...
2010-07-20 Eric Anholtglsl2: Always insert function calls into the instructio...
2010-07-20 Eric Anholtglsl2: Add definitions of the builtin constants present...
2010-07-20 Eric Anholtglsl2: Fix asin() implementation.
2010-07-20 Eric Anholtglsl2: notEqual() produces a boolean value, not the...
2010-07-20 Eric Anholtglsl2: Constant-fold assignment conditions.
2010-07-20 Ian Romanickglsl2: Don't validate IR if there were compilation...
2010-07-19 Ian Romanicklinker: Remove the FINISHME comment for intrastage...
2010-07-19 Ian Romanicklinker: Remove redundant check for 'main' in shaders
2010-07-19 Ian Romanicklinker: Track and validate GLSL versions used in shaders
2010-07-19 Ian Romanickglsl2: Use Elements macro
2010-07-19 Ian Romanicklinker: Recursively resolve function calls in imported...
next