diff options
author | Laura Ekstrand <[email protected]> | 2014-10-24 15:02:16 -0700 |
---|---|---|
committer | Laura Ekstrand <[email protected]> | 2015-01-08 11:37:28 -0800 |
commit | 97c838cf856e478401be9526ab028aea3aacad26 (patch) | |
tree | 08c39e39396983d26d3b91e3905bad7f4ff12d94 /src/mesa/main/texobj.h | |
parent | 15ddc2d94b0ac23bf23e166530e46be4ee9570a2 (diff) |
main: Added entry point for glCreateTextures.
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/main/texobj.h')
-rw-r--r-- | src/mesa/main/texobj.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/texobj.h b/src/mesa/main/texobj.h index 456dcf9ed3d..e7aabbe8912 100644 --- a/src/mesa/main/texobj.h +++ b/src/mesa/main/texobj.h @@ -206,8 +206,10 @@ _mesa_lock_context_textures( struct gl_context *ctx ); /*@{*/ extern void GLAPIENTRY -_mesa_GenTextures( GLsizei n, GLuint *textures ); +_mesa_GenTextures(GLsizei n, GLuint *textures); +extern void GLAPIENTRY +_mesa_CreateTextures(GLenum target, GLsizei n, GLuint *textures); extern void GLAPIENTRY _mesa_DeleteTextures( GLsizei n, const GLuint *textures ); |