aboutsummaryrefslogtreecommitdiffstats
path: root/src/glsl/ast_to_hir.cpp
Commit message (Expand)AuthorAgeFilesLines
* glsl: add switch case for MESA_SHADER_COMPUTEBrian Paul2014-02-261-0/+3
* glsl/sso: Add parser and AST-to-HIR support for separate shader object layoutsIan Romanick2014-02-211-13/+50
* glsl: convert GS input primitive to use ast_type_qualifierJordan Justen2014-02-201-3/+2
* glsl: Silence "type qualifiers ignored on function return type" warningIan Romanick2014-02-191-1/+1
* glsl: Only warn for macro names containing __Ian Romanick2014-02-191-3/+10
* glsl: rename _restrict to restrict_flagBrian Paul2014-02-121-1/+1
* glsl/ast: Generalize some sampler variable restrictions to all opaque types.Francisco Jerez2014-02-121-26/+31
* glsl/ast: Forbid declaration of image variables in structures and uniform blo...Francisco Jerez2014-02-121-0/+10
* glsl/ast: Validate and apply memory qualifiers to image variables.Francisco Jerez2014-02-121-0/+51
* glsl: Add image type to the GLSL IR.Francisco Jerez2014-02-121-0/+1
* glsl/cs: Prohibit user-defined ins/outs in compute shaders.Paul Berry2014-02-051-0/+7
* glsl/cs: Handle compute shader local_size_{x,y,z} declaration.Paul Berry2014-02-051-0/+79
* mesa/cs: Add a MESA_SHADER_COMPUTE stage and update switch statements.Paul Berry2014-02-051-0/+9
* glsl: Fix continue statements in do-while loops.Paul Berry2014-02-041-9/+14
* glsl: Make condition_to_hir() callable from outside ast_iteration_statement.Paul Berry2014-02-041-5/+5
* glsl: Fix chained assignments of vector channels.Kenneth Graunke2014-01-241-1/+19
* glsl: Rename "expr" to "lhs_expr" in vector_extract munging code.Kenneth Graunke2014-01-241-6/+6
* glsl: remove remaining is_array variablesTimothy Arceri2014-01-231-6/+5
* glsl: Allow arrays of arrays as input to vertex shaderTimothy Arceri2014-01-231-2/+3
* glsl: only call mark_max_array if we are assigning anTimothy Arceri2014-01-231-2/+4
* glsl: Add ARB_arrays_of_arrays support to yacc definition and astTimothy Arceri2014-01-231-70/+102
* glsl: Simplify aggregate type inference to prepare for ARB_arrays_of_arrays.Paul Berry2014-01-221-0/+7
* glsl: Convert piles of foreach_iter to the newer foreach_list macro.Kenneth Graunke2014-01-131-2/+2
* glsl: Index into ctx->Const.Program[] rather than using ad-hoc code.Paul Berry2014-01-091-12/+1
* mesa: replace ctx->Const.{Vertex,Fragment,Geomtery}Program with an array.Paul Berry2014-01-091-3/+3
* mesa: Clean up nomenclature for pipeline stages.Paul Berry2014-01-081-38/+38
* Rename overloads of _mesa_glsl_shader_target_name().Paul Berry2013-12-301-5/+5
* glsl: Replace _mesa_glsl_parser_targets enum with gl_shader_type.Paul Berry2013-12-171-41/+41
* glsl: move variables in to ir_variable::data, part IITapani Pälli2013-12-121-30/+31
* glsl: move variables in to ir_variable::data, part ITapani Pälli2013-12-121-60/+60
* glsl: introduce data section to ir_variableTapani Pälli2013-12-121-15/+15
* glsl: Add ir support for `sample` qualifier; adjust compiler and linkerChris Forbes2013-12-071-0/+15
* glsl: Don't emit empty declaration warning for a struct specifierIan Romanick2013-12-061-1/+1
* glsl: Improve error message when attemping assignment to unsized arrayTimothy Arceri2013-11-231-2/+8
* glsl: Prohibit illegal mixing of redeclarations inside/outside gl_PerVertex.Paul Berry2013-11-211-0/+20
* glsl: Implement parser support for atomic counters.Francisco Jerez2013-11-071-1/+62
* glsl: Move layout(location) checks to AST-to-HIR conversionIan Romanick2013-10-301-0/+8
* glsl: Slightly restructure error generation in validate_explicit_locationIan Romanick2013-10-301-11/+11
* glsl: Eliminate the global check in validate_explicit_locationIan Romanick2013-10-301-3/+2
* glsl: Extract explicit location code from apply_type_qualifier_to_variableIan Romanick2013-10-301-75/+84
* glsl: Add type predicate to check whether a type contains any opaque types.Francisco Jerez2013-10-291-0/+4
* glsl: Add new atomic_uint built-in GLSL type.Francisco Jerez2013-10-291-0/+1
* glsl: Add check for unsized arrays to glsl typesTimothy Arceri2013-10-281-14/+10
* glsl: Move error message inside validation check reducing duplicate message h...Timothy Arceri2013-10-271-13/+14
* glsl: When disabling gl_PerVertex variables, check that mode matches.Paul Berry2013-10-241-1/+2
* glsl: Remove unused gl_PerVertex interface blocks.Paul Berry2013-10-241-0/+90
* glsl: Call check_builtin_array_max_size when redeclaring gl_in.Paul Berry2013-10-241-1/+17
* glsl: Keep track of centroid/interpolation mode for interface block members.Paul Berry2013-10-241-0/+9
* glsl: Pass variable mode into ast_process_structure_or_interface_block().Paul Berry2013-10-241-16/+23
* glsl: Extract interpretation of interpolation to its own function.Paul Berry2013-10-241-28/+42