index
:
external_mesa3d.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
mesa
/
drivers
/
dri
/
i965
/
brw_fs.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
i965: Add support for pull constants to the new FS backend.
Eric Anholt
2010-10-22
1
-6
/
+110
*
i965: Move the FS disasm/annotation printout to codegen time.
Eric Anholt
2010-10-22
1
-50
/
+35
*
i965: Be more aggressive in tracking live/dead intervals within loops.
Eric Anholt
2010-10-21
1
-13
/
+41
*
i965: Correct scratch space allocation.
Eric Anholt
2010-10-21
1
-1
/
+0
*
i965: Add support for register spilling.
Eric Anholt
2010-10-21
1
-6
/
+67
*
i965: Fix gl_FrontFacing emit on pre-gen6.
Eric Anholt
2010-10-21
1
-1
/
+0
*
i965: Split register allocation out of the ever-growing brw_fs.cpp.
Eric Anholt
2010-10-21
1
-216
/
+0
*
i965: Use the new style of IF statement with embedded comparison on gen6.
Eric Anholt
2010-10-19
1
-4
/
+112
*
i965: Remove unused variable.
Kenneth Graunke
2010-10-18
1
-1
/
+0
*
i965: Fix a weirdness in NOT handling.
Eric Anholt
2010-10-18
1
-1
/
+1
*
i965: Disable the debug printf I added for FS disasm.
Eric Anholt
2010-10-18
1
-5
/
+7
*
i965: Add missing "break" statement.
Kenneth Graunke
2010-10-18
1
-0
/
+1
*
i965: Set the type of the null register to fix gen6 FS comparisons.
Eric Anholt
2010-10-15
1
-24
/
+40
*
i965: Fix indentation after commit 3322fbaf
Ian Romanick
2010-10-15
1
-45
/
+45
*
glsl: Slightly change the semantic of _LinkedShaders
Ian Romanick
2010-10-14
1
-12
/
+5
*
i965: Fix texturing on pre-gen5.
Eric Anholt
2010-10-14
1
-5
/
+5
*
i965: Add support for ir_unop_round_even via the RNDE instruction.
Kenneth Graunke
2010-10-14
1
-0
/
+6
*
i965: Enable the new FS backend on pre-gen6 as well.
Eric Anholt
2010-10-14
1
-12
/
+1
*
i965: Use RNDZ for ir_unop_trunc in the new FS.
Kenneth Graunke
2010-10-14
1
-1
/
+1
*
i965: Use logical-not when emitting ir_unop_ceil.
Kenneth Graunke
2010-10-14
1
-1
/
+1
*
i965: Add peepholing of conditional mod generation from expressions.
Eric Anholt
2010-10-14
1
-0
/
+88
*
i965: Add a function for handling the move of boolean values to flag regs.
Eric Anholt
2010-10-14
1
-8
/
+18
*
i965: Add a pass to the FS to split virtual GRFs to float channels.
Eric Anholt
2010-10-14
1
-2
/
+91
*
i965: Update the live interval when coalescing regs.
Eric Anholt
2010-10-14
1
-0
/
+4
*
i965: Set class_sizes[] for the aligned reg pair class.
Eric Anholt
2010-10-14
1
-0
/
+1
*
i965: Add support for rescaling GL_TEXTURE_RECTANGLE coords to new FS.
Eric Anholt
2010-10-13
1
-5
/
+40
*
Drop GLcontext typedef and use struct gl_context instead
Kristian Høgsberg
2010-10-13
1
-5
/
+5
*
i965: Fix missing "break;" in i2b/f2b, and missing AND of CMP result.
Eric Anholt
2010-10-12
1
-2
/
+3
*
i965: Always use the new FS backend on gen6.
Eric Anholt
2010-10-11
1
-2
/
+7
*
i965: Fix gen6 pixel_[xy] setup to avoid mixing int and float src operands.
Eric Anholt
2010-10-11
1
-6
/
+15
*
i965: Expand uniform args to gen6 math to full registers to get hstride == 1.
Eric Anholt
2010-10-11
1
-0
/
+25
*
i965: Don't compute-to-MRF in gen6 math instructions.
Eric Anholt
2010-10-11
1
-0
/
+16
*
i965: Don't consider gen6 math instructions to write to MRFs.
Eric Anholt
2010-10-11
1
-17
/
+38
*
i965: Compute to MRF in the new FS backend.
Eric Anholt
2010-10-11
1
-0
/
+123
*
i965: Give the FB write and texture opcodes the info on base MRF, like math.
Eric Anholt
2010-10-11
1
-37
/
+40
*
i965: Give the math opcodes information on base mrf/mrf len.
Eric Anholt
2010-10-11
1
-12
/
+51
*
i965: Move FS backend structures to a header.
Eric Anholt
2010-10-11
1
-356
/
+1
*
i965: Reduce register interference checks for changed FS_OPCODE_DISCARD.
Eric Anholt
2010-10-11
1
-5
/
+2
*
i965: Split FS_OPCODE_DISCARD into two steps.
Eric Anholt
2010-10-11
1
-9
/
+23
*
i965: Add register coalescing to the new FS backend.
Eric Anholt
2010-10-08
1
-0
/
+80
*
i965: Fix new FS gen6 interpolation for sparsely-populated arrays.
Eric Anholt
2010-10-08
1
-1
/
+1
*
i965: Normalize cubemap coordinates like is done in the Mesa IR path.
Eric Anholt
2010-10-07
1
-0
/
+1
*
i965: Disable emitting if () statements on gen6 until we really fix them.
Eric Anholt
2010-10-07
1
-0
/
+4
*
i965: Don't assume that WPOS is always provided on gen6 in the new FS.
Eric Anholt
2010-10-06
1
-2
/
+1
*
i965: Add support for gl_FrontFacing on gen6.
Eric Anholt
2010-10-06
1
-10
/
+39
*
i965: Refactor gl_FrontFacing setup out of general variable setup.
Eric Anholt
2010-10-06
1
-22
/
+31
*
i965: Gen6's sampler messages are the same as Ironlake.
Eric Anholt
2010-10-06
1
-1
/
+1
*
i965: Don't do 1/w multiplication in new FS for gen6
Eric Anholt
2010-10-06
1
-6
/
+8
*
i965: Fix botch in the header_present case in the new FS.
Eric Anholt
2010-10-06
1
-0
/
+1
*
i965: Add back gen6 headerless FB writes to the new FS backend.
Eric Anholt
2010-10-06
1
-11
/
+32
[next]