diff options
author | Kenneth Graunke <[email protected]> | 2014-06-11 12:22:12 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-06-12 00:56:08 -0700 |
commit | 3e71258023dff682684fbe47c10ae2447981849b (patch) | |
tree | 086e7a59bee63fef5e5c1d2942f87d86ab8f1580 | |
parent | b207caf9bc9ba489f8f5c36bf93fa144c5e55658 (diff) |
i965: Fix disassembly of BLORP clear programs.
Too many levels of indirection.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_blorp_clear.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp b/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp index aeed6c91d41..064a5fbce4b 100644 --- a/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp +++ b/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp @@ -486,7 +486,7 @@ brw_blorp_const_color_program::compile(struct brw_context *brw, if (unlikely(INTEL_DEBUG & DEBUG_BLORP)) { fprintf(stderr, "Native code for BLORP clear:\n"); - brw_disassemble(brw, &func.store, 0, func.next_insn_offset, stderr); + brw_disassemble(brw, func.store, 0, func.next_insn_offset, stderr); fprintf(stderr, "\n"); } |