From: Eric Anholt Date: Mon, 26 Apr 2010 16:18:23 +0000 (-0700) Subject: i915: Add debugging for just prorgam compile under INTEL_DEBUG=wm X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=edad36cff96f6d68ab8256fbe8106a313583a8c0;p=mesa.git i915: Add debugging for just prorgam compile under INTEL_DEBUG=wm --- diff --git a/src/mesa/drivers/dri/i915/i915_fragprog.c b/src/mesa/drivers/dri/i915/i915_fragprog.c index 06811c9ece1..e60157f3777 100644 --- a/src/mesa/drivers/dri/i915/i915_fragprog.c +++ b/src/mesa/drivers/dri/i915/i915_fragprog.c @@ -1100,12 +1100,23 @@ translate_program(struct i915_fragment_program *p) { struct i915_context *i915 = I915_CONTEXT(p->ctx); + if (INTEL_DEBUG & DEBUG_WM) { + printf("fp:\n"); + _mesa_print_program(&p->ctx->FragmentProgram._Current->Base); + printf("\n"); + } + i915_init_program(i915, p); check_wpos(p); upload_program(p); fixup_depth_write(p); i915_fini_program(p); + if (INTEL_DEBUG & DEBUG_WM) { + printf("i915:\n"); + i915_disassemble_program(i915->state.Program, i915->state.ProgramSize); + } + p->translated = 1; }