r6xx/r7xx: Better fix for fragment temps

This doesn't waste as many in generic cases.
This commit is contained in:
Richard Li
2009-07-02 12:08:57 -04:00
committed by Alex Deucher
parent c571395e5d
commit bb429803e0

View File

@@ -299,7 +299,7 @@ GLboolean r700SetupFragmentProgram(GLcontext * ctx)
ui = (r700->SPI_PS_IN_CONTROL_0.u32All & NUM_INTERP_mask) / (1 << NUM_INTERP_shift);
ui = (ui < unNumOfReg) ? unNumOfReg : ui;
ui = ui ? ui : unNumOfReg;
SETfield(r700->ps.SQ_PGM_RESOURCES_PS.u32All, ui, NUM_GPRS_shift, NUM_GPRS_mask);