[Mesa-dev] [PATCH 25/41] SQUASH: i965/fs: Explicitly set instruction execute size a couple of places
Jason Ekstrand
jason at jlekstrand.net
Sat Sep 20 10:23:14 PDT 2014
---
src/mesa/drivers/dri/i965/brw_fs.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
index f6c9b46..cd64f59 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -406,6 +406,7 @@ fs_visitor::DEP_RESOLVE_MOV(int grf)
/* The caller always wants uncompressed to emit the minimal extra
* dependencies, and to avoid having to deal with aligning its regs to 2.
*/
+ inst->exec_size = 8;
inst->force_uncompressed = true;
return inst;
@@ -654,6 +655,7 @@ fs_visitor::get_timestamp()
*/
mov->force_writemask_all = true;
mov->force_uncompressed = true;
+ mov->exec_size = 8;
/* The caller wants the low 32 bits of the timestamp. Since it's running
* at the GPU clock rate of ~1.2ghz, it will roll over every ~3 seconds,
--
2.1.0
More information about the mesa-dev
mailing list