summaryrefslogtreecommitdiffstats
path: root/src/glsl/ir_reader.cpp
Commit message (Expand)AuthorAgeFilesLines
* 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
* ir_reader: Combine the three dereference reading functions into one.Kenneth Graunke2011-01-121-83/+36
* ir_reader: Relax requirement that function arguments be s_lists.Kenneth Graunke2011-01-121-85/+78
* ir_reader: Remove s_list::length() method.Kenneth Graunke2011-01-121-7/+8
* ir_reader: Add a pattern matching system and use it everywhere.Kenneth Graunke2011-01-121-308/+210
* glsl: Make the symbol table's add_variable just use the variable's name.Eric Anholt2010-11-291-1/+1
* glsl: Make the symbol table's add_function just use the function's name.Eric Anholt2010-11-291-1/+1
* ir_reader: Fix some potential NULL pointer dereferences.Kenneth Graunke2010-11-031-4/+4
* ir_reader: Remove useless error check.Kenneth Graunke2010-11-031-6/+0
* ir_reader: Return a specific ir_dereference variant.Kenneth Graunke2010-11-031-6/+9
* glsl: Move is_builtin flag back to ir_function_signature.Kenneth Graunke2010-09-071-1/+1
* ir_reader: Only validate IR when a global 'debug' flag is set.Kenneth Graunke2010-09-051-1/+4
* ir_reader: Run ir_validate on the generated IR.Kenneth Graunke2010-09-041-0/+2
* ir_reader: Emit global variables at the top of the instruction list.Kenneth Graunke2010-09-041-2/+11
* ir_reader: Drop support for reading the old assignment format.Kenneth Graunke2010-09-041-6/+4
* ir_reader: Read the new assignment format (with write mask).Kenneth Graunke2010-09-041-6/+46
* ir_reader: Track the current function and report it in error messages.Kenneth Graunke2010-09-041-0/+6
* glsl: Initialize data in read_constant.Vinson Lee2010-08-291-1/+1
* glsl: Move is_built_in flag from ir_function_signature to ir_function.Kenneth Graunke2010-08-261-1/+1
* glsl2: Rework builtin function generation.Kenneth Graunke2010-08-131-8/+16
* ir_reader: Don't mark functions as defined if their body is empty.Kenneth Graunke2010-08-131-1/+1
* glsl2: Make ir_assignment derive from ir_instruction, not ir_rvalue.Kenneth Graunke2010-07-221-2/+2
* ir_reader: Add support for reading constant arrays.Kenneth Graunke2010-07-211-2/+27
* glsl2: glsl_type has its own talloc context, don't pass one inIan Romanick2010-07-201-1/+1
* glsl2: Add and use new variable mode ir_var_temporaryIan Romanick2010-07-201-1/+2
* glsl2: Remove the const disease from function signature's callee.Eric Anholt2010-07-181-1/+1
* linker: Implement first bits of intrastage linkingIan Romanick2010-07-121-0/+1
* ir_reader: Don't emit ir_function multiple times.Kenneth Graunke2010-07-071-8/+8