summaryrefslogtreecommitdiffstats
path: root/src/glsl
Commit message (Expand)AuthorAgeFilesLines
...
* glsl: Handle "const" as a parameter qualifier.Kenneth Graunke2013-07-181-29/+14
* glsl: Refactor parameter qualifier handling.Kenneth Graunke2013-07-181-1/+12
* glsl: Use merge_qualifier() when processing qualifier lists.Kenneth Graunke2013-07-181-3/+3
* glsl: Allow duplicate layout qualifiers with 420pack.Kenneth Graunke2013-07-181-1/+1
* glsl: Disable ordering checks on most qualifiers for 420pack.Kenneth Graunke2013-07-181-2/+3
* glsl: Handle most qualifier ordering in C code rather than the grammar.Kenneth Graunke2013-07-181-18/+92
* glsl: Add a new ast_type_qualifier::has_auxiliary_storage() method.Kenneth Graunke2013-07-182-0/+11
* glsl: Add a new ast_type_qualifier::has_storage() method.Kenneth Graunke2013-07-182-0/+16
* glsl: Add a new ast_type_qualifier::has_layout() method.Kenneth Graunke2013-07-182-0/+23
* glsl/linker: Use correct array length when linking inter-stage uniforms and v...Fabian Bieler2013-07-181-1/+1
* builtin_compiler/build: Avoid using libtool if cross compilingJonathan Liu2013-07-181-0/+13
* glsl: Remove comma at end of enumerator list.Vinson Lee2013-07-171-1/+1
* glsl: Fix absurd whitespace conventions in the parser.Kenneth Graunke2013-07-161-1696/+1691
* glsl: Fail the build if the grammar contains shift/reduce errors.Kenneth Graunke2013-07-161-0/+2
* glsl: Silence the last shift/reduce conflict warning in the grammar.Kenneth Graunke2013-07-161-1/+3
* glsl: Initialize ast_jump_statement::opt_return_value.Vinson Lee2013-07-161-0/+1
* glsl: Reject C-style initializers with unknown types.Matt Turner2013-07-151-0/+5
* glsl: Rework builtin_variables.cpp to reduce code duplication.Paul Berry2013-07-151-761/+368
* glsl: Fix lower_named_interface_blocks to account for dereferences of consts.Paul Berry2013-07-151-0/+2
* glsl: Don't allow vertex shader input arrays until GLSL 1.50.Paul Berry2013-07-151-1/+1
* glsl: Initialize ast_aggregate_initializer::constructor_type.Vinson Lee2013-07-121-1/+2
* glsl: Make gl_TexCoord compatibility-onlyPaul Berry2013-07-121-26/+30
* glsl ES: Fix magnitude of gl_MaxVertexUniformVectors.Paul Berry2013-07-121-1/+1
* glsl: Avoid variable length arrays.José Fonseca2013-07-121-7/+14
* glsl: Add support for C-style initializers.Matt Turner2013-07-114-1/+257
* glsl: Add infrastructure for aggregate initializers.Matt Turner2013-07-114-1/+72
* glsl: Add an is_declaration field to ast_struct_specifier.Matt Turner2013-07-112-1/+4
* glsl: Track structs' ast_type_specifiers in symbol table.Matt Turner2013-07-112-4/+27
* glsl: Add process_vec_mat_constructor() function.Matt Turner2013-07-111-0/+114
* glsl: Separate code into process_record_constructor().Matt Turner2013-07-111-48/+60
* glsl: Add copy-constructor for ast_struct_specifier.Matt Turner2013-07-111-0/+12
* glsl: Add a constructor for ast_type_specifier.Matt Turner2013-07-111-0/+16
* glsl: Clean up and clarify comment explaining initializer rules.Matt Turner2013-07-111-7/+13
* glsl: Change type of is_array to bool.Matt Turner2013-07-112-5/+5
* glsl: Add a comment to note what an exec_list is a list of.Matt Turner2013-07-111-0/+1
* glsl: Fix inverted conditional in error message.Matt Turner2013-07-111-1/+1
* glsl: Add missing return error_value(ctx) in error path.Matt Turner2013-07-111-0/+1
* glsl: Remove unnecessary #include from ast_type.cpp.Matt Turner2013-07-111-3/+0
* glsl/build: build builtin_compiler with VISIBILITY_CFLAGSChia-I Wu2013-07-121-1/+2
* glsl: Add comment explaining "row_major" parsing.Matt Turner2013-07-111-0/+6
* glsl: Mark "row_major" as not a reserved word in GLSL ES 3.0.Matt Turner2013-07-111-2/+2
* glsl: Remove outdated FINISHME comment.Matt Turner2013-07-111-3/+0
* glsl: Silence unused variable warning in the release buildEmil Velikov2013-07-081-0/+2
* glsl/ast: Silence uninitialized variable warnings in the release buildEmil Velikov2013-07-081-0/+2
* glsl: Allow non-constant expression initializers of const-qualified vars.Matt Turner2013-07-081-11/+19
* glsl: Ensure snprintf is defined on MSVC builds.José Fonseca2013-07-031-0/+1
* mesa,glsl,gallium: remove GLSLSkipStrictMaxVaryingLimitCheck and dependenciesMarek Olšák2013-07-021-24/+8
* glsl/linker: eliminate unused and set-but-unused built-in varyingsMarek Olšák2013-07-025-2/+496
* glsl/linker: check against varying limit after unused varyings are eliminatedMarek Olšák2013-07-023-11/+33
* glsl/linker: link shaders in the opposite order (from fragment to vertex)Marek Olšák2013-07-021-50/+58