summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2015-10-12 14:04:05 -0700
committerKenneth Graunke <[email protected]>2016-04-26 19:55:04 -0700
commit30b37e4e9b619ddec258c602223f7c6af98062d9 (patch)
treec18e71b2d7ffbb4426abef7c395d074b489bf010 /src
parent0bd956b34b376bdc1eaf91a2a8463d13dd59e641 (diff)
i965/blorp: Set regs_written on texturing instructions
Reviewed-by: Kenneth Graunke <[email protected]> Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp1
1 files changed, 1 insertions, 0 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 b09542158dc..99b4ff5d667 100644
--- a/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp
+++ b/src/mesa/drivers/dri/i965/brw_blorp_blit_eu.cpp
@@ -96,6 +96,7 @@ brw_blorp_eu_emitter::emit_texture_lookup(const struct brw_reg &dst,
inst->base_mrf = base_mrf;
inst->mlen = msg_length;
inst->header_size = 0;
+ inst->regs_written = 8;
insts.push_tail(inst);
}