summaryrefslogtreecommitdiffstats
path: root/src/glsl/glsl_parser.yy
Commit message (Expand)AuthorAgeFilesLines
* glsl: Move precision handling to be part of qualifier handling.Kenneth Graunke2013-07-181-15/+28
* glsl: Change is_precision_statement to default_precision != none.Kenneth Graunke2013-07-181-1/+1
* glsl: Disable ordering checks for const parameters with 420pack.Kenneth Graunke2013-07-181-1/+1
* 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: 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: Add support for C-style initializers.Matt Turner2013-07-111-0/+51
* glsl: Add comment explaining "row_major" parsing.Matt Turner2013-07-111-0/+6
* glsl: Remove outdated FINISHME comment.Matt Turner2013-07-111-3/+0
* glsl: Bail on parsing if the #version directive is bogus.Kenneth Graunke2013-06-101-0/+6
* glsl parser: allow in & out for interface block membersJordan Justen2013-05-231-25/+12
* glsl parser: handle interface block member qualifierJordan Justen2013-05-231-1/+43
* glsl parser: on desktop GL require GLSL 150 for instance namesJordan Justen2013-05-231-5/+3
* glsl parser: reject VS+in & FS+out interface blocksJordan Justen2013-05-231-0/+14
* glsl: parse in/out types for interface blocksJordan Justen2013-05-231-11/+40
* glsl parser: rename uniform block to interface blockJordan Justen2013-05-231-12/+12
* glsl: rename ast_uniform_block to ast_interface_blockJordan Justen2013-05-231-7/+7
* glsl: add support for ARB_texture_multisampleChris Forbes2013-03-021-2/+9
* glsl: Parse interface array sizeIan Romanick2013-01-251-12/+43
* glsl: Parse non-array uniform block instance names in GLSL ES 3.00.Kenneth Graunke2013-01-251-2/+18
* glsl: Refactor uniform block parser rules.Kenneth Graunke2013-01-251-21/+16
* glsl: Don't add structure fields to the symbol tableIan Romanick2013-01-081-1/+0
* glsl: Add missing semicolon in the grammarKenneth Graunke2012-12-061-0/+1
* glsl: Allow layout qualifiers in GLSL 3.00 ESIan Romanick2012-12-061-0/+2
* glsl/parser: Handle "#version 300 es" directive.Paul Berry2012-12-061-1/+5
* glsl/parser: Extract version directive processing into a function.Paul Berry2012-12-061-42/+1
* glsl: parse GLSL ES 3.00 keywords correctly.Paul Berry2012-12-061-0/+3
* glsl: Make use of new _mesa_glsl_parse_state::check_version() function.Paul Berry2012-12-061-18/+3
* glsl: Make use of new _mesa_glsl_parse_state::is_version() function.Paul Berry2012-12-061-2/+3
* glsl: Compute version_string on the fly.Paul Berry2012-12-061-8/+5
* glsl: Make a function to express a GLSL version ir human-readable form.Paul Berry2012-12-061-4/+2
* glsl: Support unsigned integer constants in layout qualifiers.Kenneth Graunke2012-11-261-1/+6
* glsl: add ARB_texture_cube_map_array support (v2)Dave Airlie2012-11-091-3/+9
* glsl: Refuse to parse uniform block declarations when UBOs aren't available.Eric Anholt2012-08-071-0/+20
* glsl: Add support for default layout qualifiers for uniforms.Eric Anholt2012-07-311-38/+20
* glsl: Merge UBO layout qualifiers in a qualifier list.Eric Anholt2012-07-311-1/+23
* glsl: Incorporate all UBO language changes into GLSL 1.40.Eric Anholt2012-07-311-0/+4
* glsl: Refactor #version validation to be more future-proof.Kenneth Graunke2012-07-311-8/+15
* glsl: Fix #pragma invariant(all) language version check.Kenneth Graunke2012-07-311-1/+1
* glsl: warning: pragma `invariant(all)' not supported in GLSL ES 1.00Oliver McFadden2012-07-261-1/+1
* glsl: Turn UBO variable declarations into ir_variables and check qualifiers.Eric Anholt2012-07-201-0/+2
* glsl: Add parsing for GLSL uniform blocks.Eric Anholt2012-07-091-0/+122
* glsl: Don't hide the type of struct_declaration_list.Eric Anholt2012-07-091-3/+3
* glsl: Reduce a bit of extra code in the merging of layout qualifiers.Eric Anholt2012-07-091-7/+2