projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
15a1279
)
i965/fs: Print mlen in dump_instructions() output.
author
Kenneth Graunke
<kenneth@whitecape.org>
Wed, 3 Jun 2015 03:40:54 +0000
(20:40 -0700)
committer
Kenneth Graunke
<kenneth@whitecape.org>
Thu, 4 Jun 2015 22:34:01 +0000
(15:34 -0700)
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Matt Turner <mattst88@gmail.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 28a19bd14ec540de63cbf50644518986e2f878f9..902f239e3df5bda108b5318d2a39f53a1c085eb0 100644
(file)
--- a/
src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/
src/mesa/drivers/dri/i965/brw_fs.cpp
@@
-3650,6
+3650,9
@@
fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
}
fprintf(file, "(%d) ", inst->exec_size);
+ if (inst->mlen) {
+ fprintf(file, "(mlen: %d) ", inst->mlen);
+ }
switch (inst->dst.file) {
case GRF: