i965: Remove EOT parameter from brw_SAMPLE and brw_set_sampler_message.
authorKenneth Graunke <kenneth@whitecape.org>
Sat, 8 Oct 2011 04:55:30 +0000 (21:55 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Tue, 18 Oct 2011 22:57:55 +0000 (15:57 -0700)
commit43ccd3200c394dd4d89ed96f039ca7d6cfff972f
tree513736c8cda7ea44f36a60db8a284fbad4eefc2b
parent0ec04c5a33731991f80eead39c6ee46535e3d4b2
i965: Remove EOT parameter from brw_SAMPLE and brw_set_sampler_message.

The existing code asserted that eot == 0, as it doesn't make sense for
a thread to sample a texture as the last thing it does.

It doesn't make much sense to pass around a dead parameter either.
Especially for a function which already has a long parameter list.

So, remove the parameter and just set EOT to 0.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/i965/brw_eu.h
src/mesa/drivers/dri/i965/brw_eu_emit.c
src/mesa/drivers/dri/i965/brw_fs_emit.cpp
src/mesa/drivers/dri/i965/brw_wm_emit.c