linker: Link built-in functions instead of including them in every shader
[mesa.git] / src / mesa / shader / ir_to_mesa.cpp
2010-07-21 Ian Romanicklinker: Link built-in functions instead of including...
2010-07-21 Carl Worthir_to_mesa: Add missing initializion of lod_info variable.
2010-07-21 Ian Romanickglsl2: Implement utility routine to talloc reparent...
2010-07-21 Ian Romanickglsl2: Add a constructor for _mesa_glsl_parse_state
2010-07-21 Ian Romanickglsl2: Add and use new variable mode ir_var_temporary
2010-07-21 Eric Anholtir_to_mesa: Validate the linked shaders as well.
2010-07-20 Eric Anholtglsl2: Add definitions of the builtin constants present...
2010-07-20 Eric Anholtir_to_mesa: Fix swizzled writemasks with swapped compon...
2010-07-19 Ian Romanicklinker: Track and validate GLSL versions used in shaders
2010-07-19 Eric Anholti915: Ask the compiler to flatten out all the if statem...
2010-07-19 Eric Anholtir_to_mesa: Do validation on the IR tree.
2010-07-19 Eric Anholtir_to_mesa: Don't do lowering passes on an errored...
2010-07-19 Eric Anholtir_to_mesa: Rename struct temp_entry, which is used...
2010-07-19 Eric Anholtir_to_mesa: Add support for function calls.
2010-07-19 Eric Anholtglsl2: Make cross() be an expression operation.
2010-07-13 Eric Anholtir_to_mesa: Add convenience function for opcodes with...
2010-07-13 Eric Anholtir_to_mesa: Add support for variable array indexing...
2010-07-13 Eric Anholtir_to_mesa: Add support for array dereferences on the...
2010-07-13 Eric Anholtir_to_mesa: Rely on ir_mat_op_to_vec for matrix multipl...
2010-07-13 Eric Anholtir_to_mesa: Emit OPCODE_MAD when we find an ADD of...
2010-07-12 Eric Anholtir_to_mesa: Add support for dereferencing matrices...
2010-07-12 Ian Romanicklinker: Stub-out intrastage linker
2010-07-12 Eric AnholtRevert "ir_to_mesa: Add support for adding/subtracting...
2010-07-12 Eric Anholtglsl2: Add a new pass at the IR level to break down...
2010-07-08 Kenneth Graunkeglsl2: Remove generate_temporary and global temporary...
2010-07-08 Eric Anholtir_to_mesa: Fix the assertion on LHS array derefs to...
2010-07-08 Eric Anholtir_to_mesa: Add support for constant matrices (untested).
2010-07-08 Eric Anholtir_to_mesa: Add support for adding/subtracting matrices.
2010-07-08 Eric Anholtir_to_mesa: Don't assert that we can't assign matrices...
2010-07-07 Eric Anholtir_to_mesa: Only allocate a vector per column of a...
2010-07-07 Eric Anholtir_to_mesa: Add support for assignment of aggregates.
2010-07-07 Eric Anholtir_to_mesa: Add support for matrix * matrix.
2010-07-07 Eric Anholtir_to_mesa: Add support for gl_TextureMatrix access.
2010-07-07 Eric Anholtir_to_mesa: Fill in some uninitialized fields that...
2010-07-07 Eric Anholtglsl2: Add a pass to simplify if statements returning...
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/