diff options
author | Matt Turner <[email protected]> | 2014-05-01 11:20:25 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-05-15 15:45:40 -0700 |
commit | e00fe451b8bac0aa4f03e07fddee08a870f79bb0 (patch) | |
tree | ffc4f5638e34b959c5c11115d413a4fdd118d9b0 /src/mesa/drivers/dri/i965/brw_clip.c | |
parent | 58bcf5996dc60043eee5946a6f2f96256768fc9f (diff) |
i965/disasm: Disassemble the compaction control bit.
brw_disasm doesn't disassemble compacted instructions, so we uncompact
before disassembling them which would unset the compaction control bit.
Instead pass it as a separate argument.
Acked-by: Eric Anholt <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_clip.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_clip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_clip.c b/src/mesa/drivers/dri/i965/brw_clip.c index c32bf5c0e7c..d1815f2216e 100644 --- a/src/mesa/drivers/dri/i965/brw_clip.c +++ b/src/mesa/drivers/dri/i965/brw_clip.c @@ -121,7 +121,7 @@ static void compile_clip_prog( struct brw_context *brw, fprintf(stderr, "clip:\n"); for (i = 0; i < program_size / sizeof(struct brw_instruction); i++) brw_disasm(stderr, &((struct brw_instruction *)program)[i], - brw->gen); + brw->gen, false); fprintf(stderr, "\n"); } |