i965: Do texture swizzling in hardware on Haswell.
authorKenneth Graunke <kenneth@whitecape.org>
Fri, 21 Sep 2012 10:13:36 +0000 (03:13 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 27 Sep 2012 05:58:30 +0000 (22:58 -0700)
commit6d6aef79742ece3bb570ae44e6c13791aae15e01
treebe2be5d9f04fa2fda8a8de8d1dc5be85a3977240
parentb5a042a657fed45264406cbd0d67fa6217a410a1
i965: Do texture swizzling in hardware on Haswell.

Haswell supports EXT_texture_swizzle and legacy DEPTH_TEXTURE_MODE
swizzling by setting SURFACE_STATE entries.  This means we don't have to
bake the swizzle settings into the shader code by emitting MOV
instructions, and thus don't have to recompile shaders whenever the
swizzles change.

Unfortunately, we can't handle GL_ALPHA this way: unlike all the others,
which store the comparison result in the .r channel (and possibly others
as well), GL_ALPHA puts it in the .a channel.  The GLSL 1.30+ style
functions which return a float always simply return the .r channel,
which would be zero if we handled this as a surface override.  In this
case, fall back to doing it the old way.  DEPTH_TEXTURE_MODE = GL_ALPHA
isn't an interesting performance path anyway.

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