---
src/mesa/drivers/dri/i965/brw_fs.cpp | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp
b/src/mesa/drivers/dri/i965/brw_fs.cpp
index e06e083..11f5323 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -3177,11 +3177,14 @@ fs_visitor::dump_instruction(backend_instruction
*be_inst, FILE *file)
fprintf(file, " ");
- if (inst->force_uncompressed)
- fprintf(file, "1sthalf ");
-
- if (inst->force_sechalf)
- fprintf(file, "2ndhalf ");
+ if (inst->exec_size < 8) {
+ fprintf(file, "%d-wide ", inst->exec_size);
+ } else if (dispatch_width == 16 && inst->exec_size == 8) {
+ if (inst->force_sechalf)
+ fprintf(file, "2ndhalf ");
+ else
+ fprintf(file, "1sthalf ");
+ }
fprintf(file, "\n");
}
--
2.1.0
_______________________________________________
mesa-dev mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-dev