diff options
author | Chris Forbes <[email protected]> | 2014-08-03 21:39:13 +1200 |
---|---|---|
committer | Chris Forbes <[email protected]> | 2014-08-09 13:12:21 +1200 |
commit | 191bc64f824beae1df9c82a9931a7776eda16e36 (patch) | |
tree | 440438d14f3240f0a4da2821d5a3dbb0ddc90ff6 | |
parent | a578592fd28e5528ee32d8a1a1f7138cb977cf1b (diff) |
i965/blorp: Put sampler index in src1 of texture ops
Signed-off-by: Chris Forbes <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp b/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp index 9459d5cf695..acaf92b0fe2 100644 --- a/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp +++ b/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp @@ -78,7 +78,8 @@ brw_blorp_eu_emitter::emit_texture_lookup(const struct brw_reg &dst, unsigned base_mrf, unsigned msg_length) { - fs_inst *inst = new (mem_ctx) fs_inst(op, dst, brw_message_reg(base_mrf)); + fs_inst *inst = new (mem_ctx) fs_inst(op, dst, brw_message_reg(base_mrf), + fs_reg(0u)); inst->base_mrf = base_mrf; inst->mlen = msg_length; |