From 456c7355e06c352e1ca9e79f6ef9cdaed66ddf9c Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Fri, 31 Aug 2012 22:50:26 -0700 Subject: [PATCH] i965: Don't use brw->fragment_program in the old brw_wm_pass2.c. According to Eric, this shouldn't matter since we don't do precompiles using the old backend. In other words, brw->fragment_program (the currently active program) should equal c->fp (the program currently being compiled). However, it's just not a good idea to access brw->fragment_program directly in compiler code. It's totally illegal in the new backend, so let's just not do it here either. Signed-off-by: Kenneth Graunke Reported-by: Paul Berry --- src/mesa/drivers/dri/i965/brw_wm_pass2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/brw_wm_pass2.c b/src/mesa/drivers/dri/i965/brw_wm_pass2.c index 562a189251e..f20e0b700e7 100644 --- a/src/mesa/drivers/dri/i965/brw_wm_pass2.c +++ b/src/mesa/drivers/dri/i965/brw_wm_pass2.c @@ -86,7 +86,7 @@ static void init_registers( struct brw_wm_compile *c ) if (intel->gen >= 6) { for (unsigned int j = 0; j < FRAG_ATTRIB_MAX; j++) { - if (brw->fragment_program->Base.InputsRead & BITFIELD64_BIT(j)) { + if (c->fp->program.Base.InputsRead & BITFIELD64_BIT(j)) { nr_interp_regs++; prealloc_reg(c, &c->payload.input_interp[j], i++); } -- 2.30.2