projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e7e501
)
i965: Print EOT in fs_visitor::dump_instruction().
author
Kenneth Graunke
<kenneth@whitecape.org>
Sun, 26 Jun 2016 07:39:32 +0000
(
00:39
-0700)
committer
Kenneth Graunke
<kenneth@whitecape.org>
Mon, 27 Jun 2016 23:36:57 +0000
(16:36 -0700)
This was useful when debugging the previous commit's issue.
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
src/mesa/drivers/dri/i965/brw_fs.cpp
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/i965/brw_fs.cpp
b/src/mesa/drivers/dri/i965/brw_fs.cpp
index a929a203db07c83173f9cd1bde4c19b86b8b84d7..2f473ccda93f15207b2bb144cfb12e09493b59ff 100644
(file)
--- a/
src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/
src/mesa/drivers/dri/i965/brw_fs.cpp
@@
-5324,6
+5324,10
@@
fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
fprintf(file, "(mlen: %d) ", inst->mlen);
}
+ if (inst->eot) {
+ fprintf(file, "(EOT) ");
+ }
+
switch (inst->dst.file) {
case VGRF:
fprintf(file, "vgrf%d", inst->dst.nr);