diff options
author | Rico Schüller <[email protected]> | 2013-10-20 12:39:55 +0200 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-10-20 20:12:08 -0700 |
commit | 1bbd3bb98a90dc38679566083fd72d7480c7df00 (patch) | |
tree | d32bb90fae8dadeedd2f14603d8b61798a4aed20 /src/mesa/main/samplerobj.c | |
parent | 50370e483ba500fa3c65e8b67b915782a6f7fad0 (diff) |
mesa: Add infrastructure for GL_ARB_texture_mirror_clamp_to_edge.
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Signed-off-by: Rico Schüller <[email protected]>
Diffstat (limited to 'src/mesa/main/samplerobj.c')
-rw-r--r-- | src/mesa/main/samplerobj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/samplerobj.c b/src/mesa/main/samplerobj.c index c3b612c7618..7285ef5ed34 100644 --- a/src/mesa/main/samplerobj.c +++ b/src/mesa/main/samplerobj.c @@ -305,7 +305,7 @@ validate_texture_wrap_mode(struct gl_context *ctx, GLenum wrap) case GL_MIRROR_CLAMP_EXT: return e->ATI_texture_mirror_once || e->EXT_texture_mirror_clamp; case GL_MIRROR_CLAMP_TO_EDGE_EXT: - return e->ATI_texture_mirror_once || e->EXT_texture_mirror_clamp; + return e->ATI_texture_mirror_once || e->EXT_texture_mirror_clamp || e->ARB_texture_mirror_clamp_to_edge; case GL_MIRROR_CLAMP_TO_BORDER_EXT: return e->EXT_texture_mirror_clamp; default: |