summaryrefslogtreecommitdiffstats
path: root/src/glsl/ir_reader.cpp
Commit message (Expand)AuthorAgeFilesLines
* glsl: add ir_texture_samples texture opcodeIlia Mirkin2015-09-101-1/+5
* mesa: Fix warning about static being in the wrong placeIan Romanick2015-09-021-1/+1
* glsl: add the patch in/out qualifier (v2)Fabian Bieler2015-07-231-0/+2
* glsl: Add ir_var_shader_storageKristian Høgsberg2015-07-141-0/+2
* glsl: add ir reader support for ir_barrierChris Forbes2015-06-161-0/+15
* glsl: Fix tautological comparison.Matt Turner2014-11-241-1/+1
* glsl: Make it possible to ignore built-ins when matching signatures.Kenneth Graunke2014-08-041-1/+2
* exec_list: Make various places use the new length() method.Connor Abbott2014-07-151-4/+3
* glsl: Replace another couple uses of foreach_list.Matt Turner2014-07-011-6/+4
* glsl: Use typed foreach_in_list instead of foreach_list.Matt Turner2014-07-011-12/+7
* glsl: include streamId when reading/printing ir_variable IR.Samuel Iglesias Gonsalvez2014-06-301-0/+6
* glsl: include streamId when reading/printing emit-vertex and end-primitive IR.Iago Toral Quiroga2014-06-301-4/+18
* glsl: Replace iterators in ir_reader.cpp with ad-hoc list walking.Kenneth Graunke2014-01-131-8/+10
* glsl: Convert piles of foreach_iter to the newer foreach_list macro.Kenneth Graunke2014-01-131-12/+12
* glsl: move variables in to ir_variable::data, part ITapani Pälli2013-12-121-12/+12
* glsl: introduce data section to ir_variableTapani Pälli2013-12-121-3/+3
* glsl/loops: Get rid of lower_bounded_loops and ir_loop::normative_bound.Paul Berry2013-12-091-21/+3
* glsl/loops: replace loop controls with a normative bound.Paul Berry2013-12-091-7/+23
* glsl: Add ir support for `sample` qualifier; adjust compiler and linkerChris Forbes2013-12-071-0/+2
* glsl: Add support for specifying the component in textureGatherChris Forbes2013-10-061-1/+9
* glsl: add plumbing for GL_ARB_texture_query_levelsChris Forbes2013-10-051-1/+7
* glsl: add texture gather changesMaxence Le Dore2013-10-031-1/+5
* glsl: Hide many classes local to individual .cpp files in anon namespaces.Eric Anholt2013-09-231-0/+4
* glsl: Pass _mesa_glsl_parse_state into matching_signature and such.Kenneth Graunke2013-09-091-2/+3
* glsl: Store a predicate for whether a built-in signature is available.Kenneth Graunke2013-09-091-2/+11
* glsl: add ir_emit_vertex and ir_end_primitive instruction typesBryan Cain2013-08-011-0/+30
* glsl: Fix null check in read_dereference.Vinson Lee2013-06-131-1/+1
* glsl: Rework ir_reader to handle expressions with four operands.Matt Turner2013-05-061-4/+6
* glsl: Implement ARB_texture_query_lodDave Airlie2013-03-291-5/+9
* glsl: add support for ARB_texture_multisampleChris Forbes2013-03-021-9/+23
* glsl: Rework ir_reader to handle expressions with three operands.Kenneth Graunke2013-02-281-26/+19
* glsl: Eliminate ambiguity between function ins/outs and shader ins/outsPaul Berry2013-01-241-3/+7
* glsl: Make ir_reader parse the "temporary" variable qualifier.Eric Anholt2012-04-241-0/+2
* glsl: Convert ir_call to be a statement rather than a value.Kenneth Graunke2012-04-021-7/+25
* glsl: Split out ir_reader's ability to read ir_dereference_variables.Kenneth Graunke2012-04-021-8/+20
* glsl: Remove pointless uses of glsl_type::get_base_type().Kenneth Graunke2011-10-281-4/+2
* mesa: Expose GLSL interpolation qualifiers in gl_fragment_program.Paul Berry2011-10-271-3/+3
* glsl: Free all S-Expressions immediately after reading IR.Kenneth Graunke2011-09-231-2/+3
* glsl: s/int/unsigned/ to silence warningBrian Paul2011-09-071-2/+2
* glsl/ir_reader: Make sure constants have the right number of components.Kenneth Graunke2011-09-071-0/+5
* glsl: Add a new ir_txs (textureSize) opcode to ir_texture.Kenneth Graunke2011-08-231-15/+22
* glsl: Make ir_reader able to read plain (return) statements.Paul Berry2011-07-081-11/+13
* glsl: Explicitly specify a type when reading/printing ir_texture.Kenneth Graunke2011-03-141-4/+13
* glsl: Introduce a new "const_in" variable mode.Kenneth Graunke2011-01-311-0/+2
* glsl: Change texel offsets to a single vector rvalue.Kenneth Graunke2011-01-311-12/+9
* Convert everything from the talloc API to the ralloc API.Kenneth Graunke2011-01-311-10/+8
* glsl: silence uninitialized var warning in read_texture()Brian Paul2011-01-251-1/+4
* glsl, i965: Remove unnecessary talloc includes.Kenneth Graunke2011-01-211-4/+0
* ir_reader: Make assignment conditions optional.Kenneth Graunke2011-01-121-8/+13
* ir_reader: Convert to a class.Kenneth Graunke2011-01-121-238/+241