From: Keith Whitwell Date: Wed, 19 Dec 2007 15:48:53 +0000 (+0000) Subject: 965: count grf allocation correctly for wm prog, first aub triangle X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dc461d8c8764e2bd8303c1955f244bacab4467fa;p=mesa.git 965: count grf allocation correctly for wm prog, first aub triangle --- diff --git a/src/mesa/pipe/i965simple/brw_wm_decl.c b/src/mesa/pipe/i965simple/brw_wm_decl.c index 392f17fad67..5b1abb9d489 100644 --- a/src/mesa/pipe/i965simple/brw_wm_decl.c +++ b/src/mesa/pipe/i965simple/brw_wm_decl.c @@ -9,7 +9,7 @@ static struct brw_reg alloc_tmp(struct brw_wm_compile *c) { c->tmp_index++; - c->reg_index = MAX2(c->reg_index, c->tmp_index); + c->reg_index = MAX2(c->reg_index, c->tmp_start + c->tmp_index); return brw_vec8_grf(c->tmp_start + c->tmp_index, 0); }