i965: Always use BRW_TEXCOORDMODE_CUBE when seamless filtering.
authorKenneth Graunke <kenneth@whitecape.org>
Wed, 23 Mar 2016 18:56:39 +0000 (11:56 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Mon, 28 Mar 2016 22:25:04 +0000 (15:25 -0700)
commit0faf26e6a0a34c3544644852802484f2404cc83e
treeca439bf795337d47f9e9bb90524900c532ee841e
parent72473658c51d5e074ce219c1e6385a4cce29f467
i965: Always use BRW_TEXCOORDMODE_CUBE when seamless filtering.

When using seamless cube map mode and NEAREST filtering, we explicitly
overrode the wrap modes to CLAMP_TO_EDGE.  This was to implement the
following spec text:

   "If NEAREST filtering is done within a miplevel, always apply apply
    wrap mode CLAMP_TO_EDGE."

However, textureGather() ignores the sampler's filtering mode, and
instead returns the four pixels that would be blended by LINEAR
filtering.  This implies that we should do proper seamless filtering,
and include pixels from adjacent cube faces.

It turns out that we can simply delete the NEAREST -> CLAMP_TO_EDGE
overrides.  Normal cube map sampling works by first selecting the
face, and then nearest filtering fetches the closest texel.  If the
nearest texel was on a different face, then that face would have been
chosen.  So it should always be within the face anyway, which
effectively performs CLAMP_TO_EDGE.

Fixes 86 dEQP-GLES31.texture.gather.basic.cube.* tests.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Suggested-by: Ian Romanick <idr@freedesktop.org>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/mesa/drivers/dri/i965/brw_sampler_state.c