i965/fs: Assume fragment color clamping is off when precompiling.
authorKenneth Graunke <kenneth@whitecape.org>
Sun, 26 Jan 2014 03:22:56 +0000 (19:22 -0800)
committerKenneth Graunke <kenneth@whitecape.org>
Wed, 21 May 2014 07:29:30 +0000 (00:29 -0700)
commit1472584397f7b5ef70dfdffda0aab4a0a38a4db0
tree786d2baffa7f1ceaff4e1aa731a0ec9eeeccf63e
parentc524f3ef9155caba6cd4f9fc72485426b1da76fd
i965/fs: Assume fragment color clamping is off when precompiling.

Modern applications frequencly use both UNORM buffers and FLOAT buffers
with color clamping disabled.  (FLOAT with clamping explicitly enabled
and SNORM buffers appear to be less common.)  We don't need to emit
saturates in the fragment shader in either of the common cases.

Mesa sets ctx->Color._ClampFragmentColor to false if all the color
buffers are UNORM.  Also, for GL_FIXED_ONLY mode (the default in
legacy OpenGL), it will be false if any FLOAT buffers are bound.
Since the common case is false, that should be our default.

Thanks to Roland Scheidegger for pointing out some faulty logic
in v1 of this patch (unnecessary code and incorrect explanations).

v2: Drop superfluous code and reword commit message.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/i965/brw_fs.cpp