diff options
author | Brian Paul <[email protected]> | 2011-10-31 10:52:56 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-10-31 10:52:56 -0600 |
commit | fbc419314e9d1f06d624d8e3997394db7f829f63 (patch) | |
tree | d21b47d4f0252b140484c2008d5b8d6e37545de2 /src/mesa/main | |
parent | a8fcb7927b2f50886eb33e81aa7feeb96bc300e4 (diff) |
mesa: glGetTexParameter support for GL_ARB_texture_storage
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/texparam.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mesa/main/texparam.c b/src/mesa/main/texparam.c index dc5ee33a2b2..a2424484422 100644 --- a/src/mesa/main/texparam.c +++ b/src/mesa/main/texparam.c @@ -1204,6 +1204,12 @@ _mesa_GetTexParameterfv( GLenum target, GLenum pname, GLfloat *params ) *params = (GLfloat) obj->Sampler.CubeMapSeamless; break; + case GL_TEXTURE_IMMUTABLE_FORMAT: + if (!ctx->Extensions.ARB_texture_storage) + goto invalid_pname; + *params = (GLfloat) obj->Immutable; + break; + default: goto invalid_pname; } @@ -1338,6 +1344,12 @@ _mesa_GetTexParameteriv( GLenum target, GLenum pname, GLint *params ) *params = (GLint) obj->Sampler.CubeMapSeamless; break; + case GL_TEXTURE_IMMUTABLE_FORMAT: + if (!ctx->Extensions.ARB_texture_storage) + goto invalid_pname; + *params = (GLint) obj->Immutable; + break; + default: goto invalid_pname; } |