i965/fs: Fix projector==1.0 optimization pre-gen6.
authorEric Anholt <eric@anholt.net>
Fri, 6 Jan 2012 01:07:55 +0000 (17:07 -0800)
committerEric Anholt <eric@anholt.net>
Mon, 9 Jan 2012 18:59:38 +0000 (10:59 -0800)
commit30f86aec01e1e1df4265d10a4618e34e9b8fec95
tree32624cf84882601987e2078589be594f16b4a9b0
parent83dc891b41c0224f5ba3624b3e3560129e644e28
i965/fs: Fix projector==1.0 optimization pre-gen6.

The optimization was supposed to turn an attribute component that was
always 1.0 into a mov of 1.0.  But by leaving loop this patch removes
out of that test, we applied the projection correction to the 1.0 and
got some other value, breaking openarena once it was converted to
using the new compiler backend.

Originally this hunk was separate from the former loop to make the
generated instructions slightly better pipelined.  We now have
automatic instruction scheduling to handle that, and the generated
instruction sequence looked the same to me after this change (except
for the bugfix).
src/mesa/drivers/dri/i965/brw_fs.cpp