diff options
author | Iago Toral Quiroga <[email protected]> | 2015-02-10 16:40:43 +0100 |
---|---|---|
committer | Iago Toral Quiroga <[email protected]> | 2015-02-24 08:58:53 +0100 |
commit | 4db4a559adcad494cdd17d378602b4b97a51d2b8 (patch) | |
tree | 130cdb7f86cc3df1bc1076f13fa34468a7d3d8d0 /src/mesa/main/teximage.h | |
parent | 2aa71e9485a5a062b1bd2dd8bdc081a8fa4c873d (diff) |
mesa: Add _mesa_is_array_texture helper
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/teximage.h')
-rw-r--r-- | src/mesa/main/teximage.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/teximage.h b/src/mesa/main/teximage.h index 02b0eda3858..b7336bc6cdb 100644 --- a/src/mesa/main/teximage.h +++ b/src/mesa/main/teximage.h @@ -66,6 +66,9 @@ _mesa_base_tex_format( struct gl_context *ctx, GLint internalFormat ); extern GLboolean _mesa_is_proxy_texture(GLenum target); +extern bool +_mesa_is_array_texture(GLenum target); + extern struct gl_texture_image * _mesa_new_texture_image( struct gl_context *ctx ); |