glsl: rename ast_uniform_block to ast_interface_block
[mesa.git] / src / glsl / ast_to_hir.cpp
2013-05-23 Jordan Justenglsl: rename ast_uniform_block to ast_interface_block
2013-05-13 Ian Romanickglsl: Convert ir_binop_vector_extract in the LHS to...
2013-04-30 Kenneth Graunkeglsl: Ignore redundant prototypes after a function...
2013-04-12 Ian Romanickglsl: Fix hypothetical NULL dereference related to...
2013-04-12 Ian Romanickglsl: Fix hypothetical NULL dereference in ast_process_...
2013-04-08 Ian Romanickglsl: Don't early-out for error-type inputs
2013-04-08 Ian Romanickglsl: Don't return a value from check_builtin_array_max...
2013-04-08 Ian Romanickglsl: Refactor handling of ast_array_index to a separat...
2013-04-08 Ian Romanickglsl: Make check_build_array_max_size externally visible
2013-02-13 Paul Berryglsl: Fix error checking on "flat" keyword to match...
2013-02-13 Paul Berryglsl: don't allow non-flat integral types in varying...
2013-02-13 Paul Berryglsl: Allow default precision qualifiers to be set...
2013-01-25 Ian Romanickglsl: Remove ir_variable::uniform_block
2013-01-25 Ian Romanickglsl: Calculate UBO data at link-time
2013-01-25 Ian Romanickglsl: Add gl_uniform_buffer_variable::IndexName field
2013-01-25 Ian Romanickglsl: Handle instance array declarations
2013-01-25 Ian Romanickglsl: Track blocks in the symbol table using the glsl_t...
2013-01-25 Ian Romanickglsl: Require that indices into uniform block arrays...
2013-01-25 Ian Romanickglsl: Add ir_variable::interface_type field
2013-01-25 Ian Romanickglsl: Generate an interface type for uniform blocks
2013-01-25 Ian Romanickglsl: Add GLSL_TYPE_INTERFACE
2013-01-25 Ian Romanickglsl: Refactor out processing of structure fields
2013-01-25 Ian Romanickmesa: Track the packing mode of a UBO in gl_uniform_buffer
2013-01-25 Ian Romanickglsl: Replace most default cases in switches on GLSL...
2013-01-25 Paul Berryglsl: Allow varying structs in GLSL ES 3.00 and GLSL...
2013-01-25 Paul Berryglsl: Eliminate ambiguity between function ins/outs...
2013-01-19 Ian Romanickmesa: Remove unused field gl_uniform_buffer_variable...
2013-01-19 Kenneth Graunkeglsl: Track UBO block names in the symbol table.
2013-01-19 Ian Romanickglsl: Reject row_major and column_major on non-matrix...
2013-01-08 Paul Berryglsl: Prohibit structs and bools from being used as...
2013-01-08 Paul Berryglsl: Plumb through is_parameter to apply_type_qualifie...
2012-12-06 Paul Berryglsl: Enable GLSL ES 3.00 features inherited from deskt...
2012-12-06 Paul Berryglsl: Make use of new _mesa_glsl_parse_state::check_ver...
2012-12-06 Paul Berryglsl: Make use of new _mesa_glsl_parse_state::is_versio...
2012-12-06 Paul Berryglsl: Compute version_string on the fly.
2012-12-06 Paul Berryglsl: Simplify symbol table version checking.
2012-11-06 Brian Paulglsl: remove incorrect 'struct' keyword
2012-09-11 Kenneth Graunkeglsl: Generate compile errors for explicit blend indice...
2012-08-07 Eric Anholtglsl: Only flag RowMajor on matrix-type variables.
2012-07-20 Eric Anholtglsl: Translate the AST for uniform blocks into some...
2012-07-20 Eric Anholtglsl: Turn UBO variable declarations into ir_variables...
2012-07-19 Kenneth Graunkeglsl: Remove open coded version of ir_variable::interpo...
2012-07-09 Eric Anholtglsl: Add parsing for GLSL uniform blocks.
2012-06-01 Ian Romanickglsl: Remove spurious printf messages
2012-05-17 Eric Anholtglsl: Drop the extra NULL specifiction on ir_assignment...
2012-05-17 Eric Anholtglsl: Fix assertion failure on handling switch on uint...
2012-05-17 Eric Anholtglsl: Reject non-scalar switch expressions.
2012-05-17 Eric Anholtglsl: Let the constructor figure out the types of switc...
2012-05-17 Eric Anholtglsl: Fix indentation of switch code.
2012-05-11 Marek OlšákMerge branch 'gallium-userbuf'
2012-05-04 Eric Anholtglsl: Don't consider unused FS out variables as being...
2012-04-19 Eric Anholtglsl: Properly throw compile-time errors for conflictin...
2012-04-19 Eric Anholtglsl: Track in each ir_variable whether it was ever...
2012-04-13 Dave Airlieglsl: add support for ARB_blend_func_extended (v3)
2012-04-09 Eric Anholtglsl: Drop the round-trip through ast_type_specifier...
2012-04-02 Kenneth Graunkeglsl: Use ir_rvalue to represent generic error_type...
2012-03-26 Kenneth Graunkeglsl: Explicitly NULL-check variables before making...
2012-03-13 Eric Anholtglsl: Avoid extra if statements for logic and/or with...
2012-02-03 Eric Anholtglsl: Add error case for switch() with two default...
2012-02-03 Eric Anholtglsl: Throw an error when faced with a duplicated switc...
2012-02-03 Eric Anholtglsl: Throw the required error when a case label is...
2012-02-03 Eric Anholtglsl: Save and restore the whole switch state for nesting.
2012-01-11 Eric Anholtglsl: Add error checking for applying interpolation...
2012-01-06 Ian Romanickglsl: Don't mark assignment temporaries as read-only
2012-01-06 Ian Romanickglsl: Emit errors for assignments to non-l-value expres...
2012-01-06 Ian Romanickglsl: Track descriptions of some expressions that can...
2012-01-04 Ian Romanickglsl: Don't use base type for bit-not when there's...
2011-11-22 Marek Olšákglsl: finish up ARB_conservative_depth (v2)
2011-11-08 Dan McCabeglsl: Generate IR for switch statements
2011-11-08 Dan McCabeglsl: Reference data structure ctors in grammar
2011-11-03 Ian Romanicklinker: Check that initializers for global variables...
2011-11-02 Paul Berryglsl: Fix type mismatch when incrementing or decrementi...
2011-10-28 Ian Romanickglsl: Clean-up spurious error message on bad structure...
2011-10-28 Ian Romanickglsl: Generate an error for array-of-array declarations
2011-10-27 Paul Berryglsl: Distinguish between no interpolation qualifier...
2011-10-27 Paul Berrymesa: Expose GLSL interpolation qualifiers in gl_fragme...
2011-10-07 Jason Woodglsl: Remove version check when looking for identifiers...
2011-10-05 Eric Anholtglsl: Consider "__" in identifers as reserved.
2011-09-24 Kenneth Graunkeglsl: Defer initialization of built-in functions until...
2011-09-14 Paul Berryglsl: Remove field array_lvalue from ir_variable.
2011-09-09 Ian Romanickglsl: Silence several "warning: unused parameter"
2011-09-09 Eric Anholtglsl: Clarify error message about whole-array assignmen...
2011-09-09 Eric Anholtglsl: When assiging from a whole array, mark it as...
2011-09-08 Paul Berryglsl: Check that gl_ClipDistance[] is not sized too...
2011-09-08 Paul Berryglsl: Rework oversize array check for gl_TexCoord.
2011-08-27 Stéphane MarchesinMerge branch 'master' of git://anongit.freedesktop...
2011-08-16 Eric Anholtglsl: When assigning to a whole array, mark the array...
2011-08-08 Paul Berryglsl: Check array size is const before asserting that...
2011-08-08 Paul Berryglsl: Emit function signatures at toplevel, even for...
2011-08-05 Chia-I Wuglsl: empty declarations should be valid
2011-08-04 Bryan CainMerge branch 'glsl-to-tgsi'
2011-07-21 Brian PaulMerge branch 'gallium-polygon-stipple'
2011-07-21 Brian PaulMerge branch 'remove-copyteximage-hook'
2011-07-21 Ian Romanickglsl: Reject shaders that contain static recursion
2011-07-18 Paul Berryglsl: Ensure that sampler declarations are always unifo...
2011-07-04 Christian KönigMerge remote-tracking branch 'origin/master' into pipe...
2011-07-04 Thomas HellstromMerge branch 'xa_branch'
2011-06-29 Kenneth Graunkeglsl: Distinguish "type mismatch" error messages for...
2011-06-28 Paul Berryglsl: permit explicit locations on fragment shader...
2011-04-23 Christian KönigMerge remote branch 'origin/master' into pipe-video
next