Module: Mesa Branch: master Commit: 3e71258023dff682684fbe47c10ae2447981849b URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=3e71258023dff682684fbe47c10ae2447981849b
Author: Kenneth Graunke <[email protected]> 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 <[email protected]> Reviewed-by: Matt Turner <[email protected]> --- 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"); } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
