diff options
author | Brian Paul <[email protected]> | 2016-02-11 07:45:50 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2016-02-12 15:10:15 -0700 |
commit | 6a08673c5eb4d55522888c3c2fd6af6946ce1264 (patch) | |
tree | c98fc156bb6cb0aa1c029631ce3880d74267e26e /src/mesa/main/get.c | |
parent | ae70d0d68c06c3624fef345f70f9576b29a243bd (diff) |
mesa: remove _ARB suffix from cube map enums
Just minor clean-up so we're consistent everywhere.
Reviewed-by: Roland Scheidegger <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/get.c')
-rw-r--r-- | src/mesa/main/get.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index 9005dc5897d..f40c5705813 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -642,7 +642,7 @@ find_custom_value(struct gl_context *ctx, const struct value_desc *d, union valu case GL_TEXTURE_1D: case GL_TEXTURE_2D: case GL_TEXTURE_3D: - case GL_TEXTURE_CUBE_MAP_ARB: + case GL_TEXTURE_CUBE_MAP: case GL_TEXTURE_RECTANGLE_NV: case GL_TEXTURE_EXTERNAL_OES: v->value_bool = _mesa_IsEnabled(d->pname); |