aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp
Commit message (Expand)AuthorAgeFilesLines
* i965: fix alpha test for MRTChris Forbes2013-07-061-2/+1
* glsl: Remove ir_print_visitor.h includes and usageEric Anholt2013-06-211-3/+2
* i965: fix problem with constant out of bounds access (v3)Dave Airlie2013-06-041-0/+1
* intel: initialize fs_visitor::params_remap in constructorFrank Henigman2013-05-301-0/+2
* i965: Shut up more compiler warnings from vector insert/extract changes.Eric Anholt2013-05-221-0/+8
* i965/fs: Make virtual grf live intervals actually cover their used range.Eric Anholt2013-05-091-2/+2
* i965/fs: Add support for bit instructions.Matt Turner2013-05-061-0/+43
* i965/fs: Allow LRPs with uniform registers.Eric Anholt2013-04-291-1/+4
* i965/fs: Don't save value returned by emit() if it's not used.Matt Turner2013-04-221-11/+11
* i965: Rename backend_visitor::prog to shader_prog.Paul Berry2013-04-111-5/+7
* i965/fs: Bake regs_written into the IR instead of recomputing it later.Eric Anholt2013-04-011-2/+5
* i965/fs: Clean up the setup of gen4 simd16 message destinations.Eric Anholt2013-04-011-5/+4
* i965/fs: Move varying uniform offset compuation into the helper func.Eric Anholt2013-04-011-3/+2
* i965/fs: Fix bad interaction between tex swizzles and textureQueryLOD.Matt Turner2013-04-011-1/+1
* i965/fs: Generate LOD sampler message from ir_lod.Matt Turner2013-03-291-0/+6
* i965/fs: Include everything but the final FB write in shader_time.Eric Anholt2013-03-281-2/+15
* Replace gl_frag_attrib enum with gl_varying_slot.Paul Berry2013-03-151-1/+1
* i965/fs: add support for ir_txf_ms on Gen6+Chris Forbes2013-03-021-9/+47
* i965/fs: Put immediate operand as src2Matt Turner2013-02-281-1/+1
* i965/fs: Use the LRP instruction for ir_triop_lrp when possible.Kenneth Graunke2013-02-281-3/+32
* i965/fs: Delay setup of uniform loads until after pre-regalloc scheduling.Eric Anholt2013-02-191-25/+3
* i965: Assert that the 4x8 pack/unpack operations have been loweredMatt Turner2013-01-251-0/+4
* glsl: Add ir_variable::is_in_uniform_block predicateIan Romanick2013-01-251-1/+1
* glsl: Add GLSL_TYPE_INTERFACEIan Romanick2013-01-251-0/+1
* glsl: Replace most default cases in switches on GLSL typeIan Romanick2013-01-251-1/+2
* i965/fs/gen7: Emit code for GLSL 3.00 pack/unpack operations (v4)Chad Versace2013-01-241-2/+17
* glsl: Eliminate ambiguity between function ins/outs and shader ins/outsPaul Berry2013-01-241-2/+2
* i965/fs: Don't mix integer/float immediates in i2b handling.Kenneth Graunke2013-01-121-1/+3
* i965/fs: Reference the core GL uniform storage for non-builtin uniforms.Eric Anholt2012-12-281-1/+1
* i965/fs: Remove the param_index/param_offset indirection.Eric Anholt2012-12-281-7/+4
* i965: Add a note about a bug from the no-recompile-on-sampler-updates change.Eric Anholt2012-12-281-0/+4
* i965/fs: Fix setup for textureGrad(samplerCubeArray, coord, dPdx, dPdy)Eric Anholt2012-12-141-7/+12
* i965/fs: Move the failure for gen7 16-wide intdiv to emit_math().Eric Anholt2012-12-141-6/+0
* i965: fs: Add fixup for textureSize on Gen6/7Chris Forbes2012-12-141-0/+11
* i965/fs: Set up gen7 UBO loads as sends from GRFs.Eric Anholt2012-12-141-6/+26
* i965: Make try_rewrite_rhs_to_dst compare VGRF size to regs written.Kenneth Graunke2012-12-121-1/+1
* i965/fs: Improve performance of shaders that start out with a discard.Eric Anholt2012-12-111-0/+14
* i965/fs: Rewrite discards to use a flag subreg to track discarded pixels.Eric Anholt2012-12-111-1/+11
* i965/fs: Add support for uniform array access with a variable index.Eric Anholt2012-12-041-10/+58
* i965/fs: Conditionalize constant-index UBO load code and add comments.Eric Anholt2012-12-041-28/+33
* i965/fs: Rename the existing pull constant load opcode.Eric Anholt2012-12-041-1/+1
* i965/fs: Don't generate saturates over existing variable values.Eric Anholt2012-11-281-0/+1
* i965/fs: Move struct brw_compile (p) entirely inside fs_generator.Kenneth Graunke2012-11-261-1/+0
* i965/fs: Pass the brw_context pointer into fs_visitor explicitly.Kenneth Graunke2012-11-261-2/+3
* i965/fs: Move brw_wm_compile::fp to fs_visitor.Kenneth Graunke2012-11-261-3/+5
* i965/fs: Remove struct brw_shader * parameter to fs_visitor constructor.Kenneth Graunke2012-11-261-2/+5
* i965/fs: Move brw_wm_compile::dispatch_width into fs_visitor.Kenneth Graunke2012-11-261-17/+18
* i965/fs: Remove brw_wm_compile::computes_depth field.Kenneth Graunke2012-11-261-1/+1
* i965/fs: Add helper functions for IF and CMP and use them.Eric Anholt2012-11-201-66/+21
* i965/fs: Add helper functions for generating ALU ops, like in the VS.Eric Anholt2012-11-201-150/+144