i965/vs: Add a little bit of IR-level debug ability.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_vec4.h
2012-10-17 Eric Anholti965/vs: Add a little bit of IR-level debug ability.
2012-10-10 Eric Anholti965/vs: Add support for splitting virtual GRFs.
2012-10-10 Eric Anholti965/vs: Try again when we've successfully spilled...
2012-10-10 Kenneth Graunkei965/vs: Implement register spilling.
2012-08-07 Eric Anholti965/vs: Add a surface index to VS_OPCODE_PULL_CONSTANT...
2012-07-06 Eric Anholti965/vs: Move class functions to brw_vec4.cpp.
2012-01-30 Eric Anholti965/vs: Avoid allocating registers in to the gen7...
2011-12-20 Kenneth Graunkei965/vs: Implement EXT_texture_swizzle support for...
2011-12-20 Kenneth Graunkei965/vs: Add support for texel offsets.
2011-12-20 Kenneth Graunkei965/vs: Implement vec4_visitor::generate_tex().
2011-12-18 Kenneth Graunkei965/vs: Add a new dst_reg constructor for file, number...
2011-12-18 Kenneth Graunkei965/vs: Add vec4_instruction::is_tex() query.
2011-11-07 Kenneth Graunkei965: Enable faster workaround-free math on Ivybridge.
2011-10-20 Eric Anholti965/vs: Fix comparisons with uint negation.
2011-10-18 Kenneth Graunkeintel: Convert from GLboolean to 'bool' from stdbool.h.
2011-10-07 Brian Pauli965: make swizzle_for_size() return unsigned
2011-10-07 Brian Pauli965: make size_swizzles[] static const
2011-09-28 Paul Berryi965 new VS: Fix src_reg(uint32_t) constructor.
2011-09-28 Paul Berryi965 new VS: don't share clip plane constants in pre...
2011-09-23 Paul Berryi965: Set up clip distance VUE slots appropriately...
2011-09-20 Eric Anholti965/vs: Add support for compute-to-MRF.
2011-09-20 Eric Anholti965/vs: Add a function for how many MRFs get written...
2011-09-20 Eric Anholti965/vs: Remove dead fields of src_reg.
2011-09-20 Eric Anholti965/vs: Add support for simple algebraic optimizations.
2011-09-09 Eric Anholti965/vs: Add support for copy propagation of the UNIFOR...
2011-09-09 Eric Anholti965/vs: Add constant propagation to a few opcodes.
2011-09-09 Eric Anholti965/vs: Keep track of indices into a per-register...
2011-09-09 Eric Anholti965/vs: Add support for overflowing the number of...
2011-09-09 Eric Anholti965/vs: Add annotation to more of the URB write.
2011-09-07 Eric Anholti965/vs: Add support for vector comparison ops resultin...
2011-09-06 Paul Berryi965: new VS: use the VUE map to write out vertex attri...
2011-09-06 Paul Berryi965: new VS: move clip distance computation (GEN5...
2011-09-06 Paul Berryi965: new VS: Move PSIZ/flags computation to a separate...
2011-09-06 Paul Berryi965: new VS: move NDC computation (GEN4-5) to a separa...
2011-09-06 Paul Berryi965: new VS: Use output_reg[] to find NDC and HPOS...
2011-08-31 Eric Anholti965/vs: Avoid the emit(), remove(), insert_before...
2011-08-31 Eric Anholti965/vs: Move logic for weird CMP type handling to...
2011-08-31 Eric Anholti965/vs: Create instruction generators outside of the...
2011-08-30 Eric Anholti965/vs: Pack live uniform vectors together in the...
2011-08-30 Eric Anholti965/vs: Track uniforms as separate vectors once we...
2011-08-30 Eric Anholti965/vs: Add support for pull constant loads for unifor...
2011-08-30 Eric Anholti965/vs: Restructure emit() functions around a vec4_ins...
2011-08-30 Chad Versacei965: Fix Android build by removing relative includes
2011-08-27 Stéphane MarchesinMerge branch 'master' of git://anongit.freedesktop...
2011-08-25 Brian PaulMerge branch 'kasanen-post-process-v2'
2011-08-20 Eric Anholti965/vs: Add simple dead code elimination.
2011-08-19 Eric Anholti965/vs: Copy the live intervals calculation over from...
2011-08-16 Eric Anholti965/vs: Avoid generating a MOV for most ir_assignment...
2011-08-16 Eric Anholti965/vs: Add support for ir_binop_pow.
2011-08-16 Eric Anholti965/vs: Add support for scratch read/write codegen.
2011-08-16 Eric Anholti965/vs: Move virtual GRFs with array accesses to them...
2011-08-16 Eric Anholti965/vs: Track the variable index of array accesses.
2011-08-16 Eric Anholti965/vs: Avoid generating extra moves when setting...
2011-08-16 Eric Anholti965/vs: Handle assignment of structures/arrays/matrice...
2011-08-16 Eric Anholti965/vs: Start adding support for uniforms
2011-08-16 Eric Anholti965: Start adding the VS visitor and codegen.