summaryrefslogtreecommitdiff
path: root/src/glsl/ir.cpp
AgeCommit message (Expand)Author
2011-03-15glsl: add cast to silence signed/unsigned comparison warningBrian Paul
2011-03-14glsl: Explicitly specify a type when reading/printing ir_texture.Kenneth Graunke
2011-01-31glsl: Introduce a new "const_in" variable mode.Kenneth Graunke
2011-01-31Convert everything from the talloc API to the ralloc API.Kenneth Graunke
2011-01-26glsl: Propagate depth layout qualifier from AST to IRChad Versace
2011-01-26glsl: Define enum ir_depth_layoutChad Versace
2011-01-12glsl: Track variable usage, use that to enforce semanticsIan Romanick
2011-01-11glsl: Add type inference support for remaining expression opcodes.Kenneth Graunke
2010-12-02glsl: Fix flipped return of has_value() for array constants.Eric Anholt
2010-11-30glsl: Add a helper constructor for expressions that works out result type.Eric Anholt
2010-11-19glsl: Add a helper function for determining if an rvalue could be a saturate.Eric Anholt
2010-11-19glsl: Add ir_quadop_vector expressionIan Romanick
2010-11-19glsl: Add unary ir_expression constructorIan Romanick
2010-11-19glsl: Add ir_rvalue::is_negative_one predicateIan Romanick
2010-11-19glsl: Add ir_unop_sin_reduced and ir_unop_cos_reducedIan Romanick
2010-11-18glsl: Make is_zero and is_one virtual methods of ir_rvalueIan Romanick
2010-11-17glsl: Fix 'control reaches end of non-void function' warning.Vinson Lee
2010-11-17glsl: Refactor get_num_operands.Kenneth Graunke
2010-11-17glsl: Remove the ir_binop_cross opcode.Kenneth Graunke
2010-11-16glsl: Refactor is_vec_{zero,one} to be methods of ir_constantIan Romanick
2010-10-14glsl: Add a new ir_unop_round_even opcode for GLSL 1.30's roundEven.Kenneth Graunke
2010-10-08glsl: Track explicit location in AST to IR translationIan Romanick
2010-09-22glsl: Rework assignments with write_masks to have LHS chan count match RHS.Eric Anholt
2010-09-16glsl: Change from has_builtin_signature to has_user_signature.Kenneth Graunke
2010-09-13glsl: introduce ir_binop_all_equal and ir_binop_any_equal, allow vector cmpsLuca Barbieri
2010-09-09glsl2: Add ir_unop_noiseIan Romanick
2010-09-07glsl: Move is_builtin flag back to ir_function_signature.Kenneth Graunke
2010-09-03ir_expression: Add static operator_string methodIan Romanick
2010-09-03glsl2: Add cmp field to ir_loopIan Romanick
2010-09-01glsl: Add proper handling for constant matrix-from-matrix constructors.Kenneth Graunke
2010-09-01glsl: Move generate_constructor_(matrix|vector) to ir_constant ctor.Kenneth Graunke
2010-09-01glsl2: Allow ir_constant::zero to create boolean constantsIan Romanick
2010-08-29glsl: Completely initialize value member in ir_constant constructor.Vinson Lee
2010-08-28glsl: Initialize the rest of values of ir_constant::value.Vinson Lee
2010-08-26glsl: Move is_built_in flag from ir_function_signature to ir_function.Kenneth Graunke
2010-08-25glsl: Don't consider things with a type containing a sampler as an lvalue.Eric Anholt
2010-08-24glsl: Include main/core.h.Chia-I Wu
2010-08-23mesa: Add new ir_unop_any() expression operation.Eric Anholt
2010-08-17ir_constant: Don't assert on out-of-bounds array accessesIan Romanick
2010-08-04glsl2: Remove the shader_in/shader_out tracking separate from var->mode.Eric Anholt
2010-08-04glsl2: Add ir_assignment::write_mask and associated methodsIan Romanick
2010-08-02glsl2: Initialize the ARB_fcc fields of ir_variable.Eric Anholt
2010-07-30glsl2: Initialize ir_function_signature::is_built_in.Kenneth Graunke
2010-07-29glsl2: Fix spelling of "sentinel."Eric Anholt
2010-07-28glsl2: Add new ir_constant::zero static method.Kenneth Graunke
2010-07-27glsl2: When stealing var->constant_value, steal its children as well.Eric Anholt
2010-07-26glsl2: Also steal the constant components of aggregate-typed ir_constants.Eric Anholt
2010-07-26glsl2: Steal ir_variable's constant_value field.Kenneth Graunke
2010-07-22glsl2: Initialize ir_instruction::type and ir_rvalue::type.Kenneth Graunke
2010-07-21ir_constant_expression: Add support for array == and !=.Kenneth Graunke