Mesa (master): i965: Fix disassembly of BLORP clear programs.

Kenneth Graunke kwg at kemper.freedesktop.org
Thu Jun 12 08:07:04 UTC 2014


Module: Mesa
Branch: master
Commit: 3e71258023dff682684fbe47c10ae2447981849b
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=3e71258023dff682684fbe47c10ae2447981849b

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Wed Jun 11 12:22:12 2014 -0700

i965: Fix disassembly of BLORP clear programs.

Too many levels of indirection.

Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
Reviewed-by: Matt Turner <mattst88 at gmail.com>

---

 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");
    }
 




More information about the mesa-commit mailing list