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_vec4.cpp | |
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_vec4.cpp')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vec4.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4.cpp b/src/mesa/drivers/dri/i965/brw_vec4.cpp index e470ac80ab5..67dd17a45e3 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4.cpp @@ -230,7 +230,13 @@ vec4_instruction::is_math() bool vec4_instruction::is_send_from_grf() { - return opcode == SHADER_OPCODE_SHADER_TIME_ADD; + switch (opcode) { + case SHADER_OPCODE_SHADER_TIME_ADD: + case VS_OPCODE_PULL_CONSTANT_LOAD_GEN7: + return true; + default: + return false; + } } bool |