diff options
author | Eric Anholt <[email protected]> | 2011-08-22 10:35:24 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2011-08-30 12:09:40 -0700 |
commit | 483f5b348b0f3c0ca7082fd2047c354e8af285e7 (patch) | |
tree | bf73261e12d266ecea2e6105b52428a62c244a85 /src/mesa/drivers/dri/i965/brw_eu.h | |
parent | 88e08de8017b69591b37dafde9afd15f796fb404 (diff) |
i965/vs: Add support for pull constant loads for uniform arrays.
v2: reworked the instruction emit and made use of gen6_resolve_implied_move,
from Ken's review
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_eu.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu.h b/src/mesa/drivers/dri/i965/brw_eu.h index af50305fc2b..31334ce8c49 100644 --- a/src/mesa/drivers/dri/i965/brw_eu.h +++ b/src/mesa/drivers/dri/i965/brw_eu.h @@ -807,6 +807,9 @@ void brw_set_dest(struct brw_compile *p, struct brw_instruction *insn, void brw_set_src0(struct brw_compile *p, struct brw_instruction *insn, struct brw_reg reg); +void gen6_resolve_implied_move(struct brw_compile *p, + struct brw_reg *src, + GLuint msg_reg_nr); /* Helpers for regular instructions: */ |