From: Brian Paul Date: Wed, 8 Jun 2011 14:05:40 +0000 (-0600) Subject: mesa: add more sampler types to is_sampler_type() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f9c2feb96b5854ca8030d94a5ea5b168ec818fe8;p=mesa.git mesa: add more sampler types to is_sampler_type() --- diff --git a/src/mesa/main/uniforms.c b/src/mesa/main/uniforms.c index c9b12c8c2e1..771e039eb35 100644 --- a/src/mesa/main/uniforms.c +++ b/src/mesa/main/uniforms.c @@ -109,12 +109,16 @@ is_sampler_type(GLenum type) case GL_SAMPLER_CUBE: case GL_SAMPLER_1D_SHADOW: case GL_SAMPLER_2D_SHADOW: + case GL_SAMPLER_CUBE_SHADOW: case GL_SAMPLER_2D_RECT_ARB: case GL_SAMPLER_2D_RECT_SHADOW_ARB: case GL_SAMPLER_1D_ARRAY_EXT: case GL_SAMPLER_2D_ARRAY_EXT: case GL_SAMPLER_1D_ARRAY_SHADOW_EXT: case GL_SAMPLER_2D_ARRAY_SHADOW_EXT: + case GL_SAMPLER_CUBE_MAP_ARRAY: + case GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW: + case GL_SAMPLER_BUFFER: return GL_TRUE; default: return GL_FALSE;