glsl2: Add pass for supporting variable vector indexing in rvalues.
[mesa.git] / src / mesa / shader / ir_to_mesa.cpp
2010-07-07 Eric Anholtglsl2: Add pass for supporting variable vector indexing...
2010-07-07 Eric Anholtir_to_mesa: Add support for conditional moves.
2010-07-06 Eric Anholtir_to_mesa: Use the compiler-assigned locations for...
2010-07-03 Kenneth Graunkeir_to_mesa: Fix uninitalized value.
2010-07-03 Eric Anholtir_to_mesa: Fix up implementation of ir_unop_exp.
2010-07-03 Eric Anholtir_to_mesa: Add support for scalar * mat, vec * mat.
2010-07-03 Eric Anholtir_to_mesa: Add support for shadow comparison to textur...
2010-07-03 Eric Anholtir_to_mesa: Move projection handling out of ir_tex...
2010-07-02 Eric Anholtir_to_mesa: Add support for projected non-shadow/bias...
2010-07-02 Eric Anholtir_to_mesa: Fix sparse swizzling of src regs when a...
2010-07-02 Eric Anholtir_to_mesa: Don't forget to run the Mesa IR optimizatio...
2010-07-02 Eric Anholtglsl2: Add a pass to break ir_binop_div to _mul and...
2010-07-02 Ian Romanickglsl2: Conditionally allow optional extensions to be...
2010-07-02 Ian Romanickglsl2: Conditionally define preprocessor tokens for...
2010-07-01 Ian Romanickglsl2: Add gl_MaxTextureCoords
2010-07-01 Eric Anholtir_to_mesa: Fill in remaining ops, remove default case...
2010-07-01 Eric Anholtir_to_mesa: Add support for ir_unop_rcp.
2010-07-01 Eric Anholtglsl2: Add a pass to convert mod(a, b) to b * fract...
2010-07-01 Eric Anholtglsl2: Add ir_unop_fract as an expression type.
2010-07-01 Eric Anholtir_to_mesa: Add support for discard instructions.
2010-07-01 Eric Anholtir_to_mesa: Add support for ir_unop_sign.
2010-06-30 Eric Anholtir_to_mesa: Add missing no-op type conversions.
2010-06-30 Eric Anholtir_to_mesa: Note which of our expr ops are unsupported...
2010-06-30 Eric Anholtir_to_mesa: Initialize the (we never use it) abs field...
2010-06-30 Eric Anholtir_to_mesa: Send the negate field on to Mesa IR.
2010-06-30 Eric Anholtir_to_mesa: When generating a swizzle, respect the...
2010-06-30 Kenneth Graunkeglsl2: Define new ir_discard instruction.
2010-06-30 Eric Anholtir_to_mesa: Support gl_FragDepth.
2010-06-30 Eric Anholtir_to_mesa: Fix the indexing of attributes in the progr...
2010-06-30 Kenneth Graunkeglsl2: Preprocessed source doesn't need to live past...
2010-06-30 Kenneth Graunkeglsl2: Steal the live IR and free the rest of the junk.
2010-06-30 Eric Anholtir_to_mesa: Tell Mesa about our choices for vertex...
2010-06-30 Eric Anholtglsl2: Use Mesa's gl_shader_program instead of our...
2010-06-30 Eric Anholtglsl2: Move our data from a glsl_shader* on the side...
2010-06-30 Eric Anholtir_to_mesa: Add support for ir_unop_abs.
2010-06-30 Eric Anholtir_to_mesa: Add support for dFdx, dFdy.
2010-06-30 Eric Anholtir_to_mesa: Start adding support for texture instructions.
2010-06-29 Ian Romanickglsl2: Pass MaxDrawBuffers from core Mesa into the...
2010-06-29 Ian Romanickglsl2: Invoke preprocessor before calling the compiler...
2010-06-28 Eric Anholtir_to_mesa: Actually initialize the undef register...
2010-06-28 Eric Anholtir_to_mesa: Support user-defined varyings using the...
2010-06-28 Eric Anholtir_to_mesa: Fix binop_sqrt for multi-channel and negati...
2010-06-28 Eric Anholtir_to_mesa: Fix indexes of temps used in expressions.
2010-06-28 Eric Anholtir_to_mesa: Notify the driver when we generate new...
2010-06-28 Eric Anholtir_to_mesa: Add support for the pow expression.
2010-06-28 Eric Anholtir_to_mesa: Fix EmitCondCodes for boolean vars as condi...
2010-06-28 Eric Anholtir_to_mesa: Respect EmitCondCodes for IF statements.
2010-06-28 Eric Anholtir_to_mesa: Traverse the "else" instrs after "else...
2010-06-28 Eric Anholtir_to_mesa: Fix matrix * scalar multiplication.
2010-06-28 Eric Anholtir_to_mesa: Check the right element for matrix * scalar...
2010-06-28 Eric Anholtglsl2: Add support for some builtin matrices.
2010-06-28 Eric Anholtir_to_mesa: Fix copy and wasted InputsRead/OutputsWritt...
2010-06-26 Eric Anholtglsl2: Add support for non-float constants in Mesa IR.
2010-06-26 Eric Anholtglsl2: Take out the spamming of debug flags I'd added.
2010-06-26 Eric Anholtglsl2: Don't clear swizzles for Mesa IR constants after...
2010-06-25 Eric Anholtglsl2: Start trying to hook up uniforms.
2010-06-25 Eric Anholtglsl2: Use the parser state as the talloc context for...
2010-06-25 Eric Anholtglsl2: Emit OPCODE_END at the end of the Mesa program.
2010-06-25 Eric Anholtglsl2: Hook up constant parameters in ir_to_mesa.
2010-06-25 Eric Anholtglsl2: Set InputsRead and OutputsWritten on the generat...
2010-06-25 Eric Anholtglsl2: Start integrating ir_to_mesa.cpp into shader_api.h
2010-06-25 Eric Anholtglsl2: Replace the GLSL compiler with the glsl2 project.
2010-06-24 Eric Anholtglsl2: Move the Mesa IR codegen into mesa/shader/