diff options
author | Eric Anholt <[email protected]> | 2013-04-04 14:10:18 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2013-04-10 09:45:21 -0700 |
commit | d5f7aebac2b1afbc5023cd114174860d8d763d06 (patch) | |
tree | 7c4757cbd462c2d7629bd9fed1000c42e3a1ce41 /src/mesa/drivers/dri/i965/brw_defines.h | |
parent | 3badbf7f7fa4898c69545fea3c60ea29cf61ae3b (diff) |
i965/vs: Use GRFs for pull constant offsets on gen7.
This allows the computation of the offset to get written directly into the
message source.
shader-db results:
total instructions in shared programs: 3308390 -> 3283025 (-0.77%)
instructions in affected programs: 442998 -> 417633 (-5.73%)
No difference in GLB2.7 low res (n=9).
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_defines.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_defines.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_defines.h b/src/mesa/drivers/dri/i965/brw_defines.h index 3d07c36b747..a13f9dc57ab 100644 --- a/src/mesa/drivers/dri/i965/brw_defines.h +++ b/src/mesa/drivers/dri/i965/brw_defines.h @@ -739,6 +739,7 @@ enum opcode { VS_OPCODE_SCRATCH_READ, VS_OPCODE_SCRATCH_WRITE, VS_OPCODE_PULL_CONSTANT_LOAD, + VS_OPCODE_PULL_CONSTANT_LOAD_GEN7, }; #define BRW_PREDICATE_NONE 0 |