aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs.cpp
Commit message (Expand)AuthorAgeFilesLines
* Refactor code that converts between gl_vert_result and gl_frag_attrib.Paul Berry2011-09-061-14/+2
* i965: Fix Android build by removing relative includesChad Versace2011-08-301-2/+2
* i965/fs: Implement textureSize (TXS) on Gen5+.Kenneth Graunke2011-08-231-0/+1
* i965/fs: Don't double-convert integer/boolean uniforms.Kenneth Graunke2011-08-191-16/+20
* i965/vs: Run the shader backend at link time and return compile failures.Eric Anholt2011-08-161-1/+1
* i965: Rename math FS_OPCODE_* to SHADER_OPCODE_*.Eric Anholt2011-08-161-17/+17
* i965: Create a shared enum for hardware and compiler-internal opcodes.Eric Anholt2011-08-161-2/+9
* i965: Drop the reg/hw_reg distinction.Eric Anholt2011-08-101-17/+17
* i965/fs: Eliminate the magic nature of virtual GRF 0.Eric Anholt2011-08-101-6/+3
* i965/fs: Don't upload unused uniform components.Eric Anholt2011-08-051-3/+86
* Merge branch 'glsl-to-tgsi'Bryan Cain2011-08-041-1/+1
|\
| * r200, r600c, i965: fix buildBryan Cain2011-08-011-1/+1
* | i965/fs: Allow register coalescing where the source is a uniform.Eric Anholt2011-07-291-10/+14
* | i965/fs: Optimize a * 1.0 -> a.Eric Anholt2011-07-291-0/+43
* | i965/fs: If we see a RCP of a constant, try to constant fold it.Eric Anholt2011-07-291-0/+14
* | i965/fs: Port texture projection avoidance optimization from the old backend.Eric Anholt2011-07-291-3/+15
* | i965/fs: Stop using the exec_list iterator.Eric Anholt2011-07-291-37/+33
* | i965/fs: Add support for TXD with shadow comparisons.Kenneth Graunke2011-06-181-0/+3
* | i965/fs: Check for compilation failure and bail before optimizing.Kenneth Graunke2011-06-181-0/+2
* | i965: Use state streaming on programs, and state base address on gen5+.Eric Anholt2011-06-181-4/+2
|/
* Fix format not a string literal error with -Werror=format-securityEugeni Dodonov2011-06-101-1/+1
* i965/fs: Use the embedded compare in SEL on gen6+.Eric Anholt2011-05-311-4/+8
* i965/fs: Do a FS compile up front at link time to produce link errors.Eric Anholt2011-05-271-17/+93
* i965/fs: Split the GLSL IR -> FS LIR visitor to brw_fs_visitor.cpp.Eric Anholt2011-05-271-1679/+9
* i965/fs: Split the BRW native code emit to brw_fs_emit.cppEric Anholt2011-05-271-839/+0
* i965: Move a couple of GLSL IR -> BRW helper functions to brw_shader.cpp.Eric Anholt2011-05-271-49/+1
* i965: Move non-FS-specific shader support to brw_shader.cpp.Eric Anholt2011-05-271-99/+0
* i965: Avoid generating MOVs for assignments of expressions.Eric Anholt2011-05-271-11/+71
* i965/fs: Move the computation of register block count from unit to compile.Eric Anholt2011-05-271-2/+2
* i965/fs: Track fixed GRF regs separate from allocated GRF file in scheduling.Eric Anholt2011-05-271-1/+1
* i965: Remove linear_color for GL_PERSPECTIVE_CORRECTION_HINT.Eric Anholt2011-05-261-1/+1
* i965: Fix assertion failures in unused brw_reg setup by deleting it.Eric Anholt2011-05-251-1/+0
* i965: Fix sampling on Ivybridge after headerless change.Kenneth Graunke2011-05-201-2/+13
* i965: Remove "TXD" from justification of sampler message headers.Kenneth Graunke2011-05-201-1/+1
* i965/fs: Don't emit a header on gen5+ sample messages unless required.Eric Anholt2011-05-181-7/+19
* i965/fs: Fix GPU hang on texture2d-bias on pre-Ironlake.Eric Anholt2011-05-181-4/+7
* i965: Add support for correct GL_CLAMP behavior by clamping coordinates.Eric Anholt2011-05-181-13/+32
* i965/fs: Drop the viewport index/rtai clearing in gen6 fb writes.Eric Anholt2011-05-181-6/+0
* i965/fs: Add support for "if" statements in 16-wide mode on gen6+.Eric Anholt2011-05-181-2/+2
* i965/fs: Fix discard and alpha test in 16-wide.Eric Anholt2011-05-181-6/+8
* i965/fs: Cut an instruction and a temporary from gen6 discard statements.Eric Anholt2011-05-181-36/+28
* i965/fs: Fix compiler warnings about dead code from 963431829055f63ec94dEric Anholt2011-05-181-19/+0
* i965: Avoid register coalescing away MATH workarounds on Ivybridge.Kenneth Graunke2011-05-171-1/+1
* i965: Add support for IF/ELSE/ENDIF control flow on Ivybridge.Kenneth Graunke2011-05-171-2/+3
* i965: Add support for Ivybridge texturing messages.Kenneth Graunke2011-05-171-3/+65
* i965: Move IF stack handling into the EU abstraction layer/brw_compile.Kenneth Graunke2011-05-171-17/+5
* i965/fs: Add support for compute-to-mrf in 16-wide mode.Eric Anholt2011-04-261-11/+52
* i965/fs: Typo fix a comment.Eric Anholt2011-04-261-1/+1
* i965/fs: Enable constant propagation in 16-wide.Eric Anholt2011-04-261-5/+3
* i965/fs: Add support for 16-wide dispatch with uniforms in use.Eric Anholt2011-04-261-8/+52