[Mesa-dev] [PATCH] i965: Fix disassembly of BLORP clear programs.
Kenneth Graunke
kenneth at whitecape.org
Wed Jun 11 12:25:37 PDT 2014
Too many levels of indirection.
Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
---
src/mesa/drivers/dri/i965/brw_blorp_clear.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp b/src/mesa/drivers/dri/i965/brw_blorp_clear.cpp
index aeed6c9..064a5fb 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");
}
--
2.0.0
More information about the mesa-dev
mailing list