summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/teximage.c
diff options
context:
space:
mode:
authorEduardo Lima Mitev <elima@igalia.com>2016-01-12 19:36:20 +0100
committerEduardo Lima Mitev <elima@igalia.com>2016-03-03 15:14:06 +0100
commitc5cf16a4fcf64eb1f6b5923e0d46b3f7dfee23a9 (patch)
treed66d6c92775d22bf38ab3ecae9cb025b9dcec3fe /src/mesa/main/teximage.c
parent4e33278b39f5292b5ca82281f7b364d402ba48b2 (diff)
downloadexternal_mesa3d-c5cf16a4fcf64eb1f6b5923e0d46b3f7dfee23a9.zip
external_mesa3d-c5cf16a4fcf64eb1f6b5923e0d46b3f7dfee23a9.tar.gz
external_mesa3d-c5cf16a4fcf64eb1f6b5923e0d46b3f7dfee23a9.tar.bz2
mesa/teximage: add _mesa_is_cube_map_texture utility method
Reviewed-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/mesa/main/teximage.c')
-rw-r--r--src/mesa/main/teximage.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c
index 78d5b55..616a929 100644
--- a/src/mesa/main/teximage.c
+++ b/src/mesa/main/teximage.c
@@ -242,6 +242,24 @@ _mesa_is_array_texture(GLenum target)
};
}
+/**
+ * Test if a target is a cube map.
+ *
+ * \param target texture target.
+ *
+ * \return true if the target is a cube map, false otherwise.
+ */
+bool
+_mesa_is_cube_map_texture(GLenum target)
+{
+ switch(target) {
+ case GL_TEXTURE_CUBE_MAP:
+ case GL_TEXTURE_CUBE_MAP_ARRAY:
+ return true;
+ default:
+ return false;
+ }
+}
/**
* Return the proxy target which corresponds to the given texture target