diff options
author | Jason Ekstrand <[email protected]> | 2015-10-12 14:04:05 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2016-04-26 19:55:04 -0700 |
commit | 30b37e4e9b619ddec258c602223f7c6af98062d9 (patch) | |
tree | c18e71b2d7ffbb4426abef7c395d074b489bf010 /src | |
parent | 0bd956b34b376bdc1eaf91a2a8463d13dd59e641 (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.cpp | 1 |
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); } |