--- src/mesa/drivers/dri/i965/brw_vec4.cpp | 7 +++++++ 1 file changed, 7 insertions(+)
diff --git a/src/mesa/drivers/dri/i965/brw_vec4.cpp b/src/mesa/drivers/dri/i965/brw_vec4.cpp index 551f0a2..71f5307 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4.cpp @@ -1166,6 +1166,10 @@ vec4_visitor::dump_instruction(backend_instruction *be_inst) printf(", "); for (int i = 0; i < 3 && inst->src[i].file != BAD_FILE; i++) { + if (inst->src[i].negate) + printf("-"); + if (inst->src[i].abs) + printf("|"); switch (inst->src[i].file) { case GRF: printf("vgrf%d", inst->src[i].reg); @@ -1242,6 +1246,9 @@ vec4_visitor::dump_instruction(backend_instruction *be_inst) printf("%s", chans[BRW_GET_SWZ(inst->src[i].swizzle, c)]); } + if (inst->src[i].abs) + printf("|"); + if (i < 2 && inst->src[i + 1].file != BAD_FILE) printf(", "); } -- 1.8.3.2 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev