diff options
author | Laura Ekstrand <[email protected]> | 2014-12-09 16:49:09 -0800 |
---|---|---|
committer | Laura Ekstrand <[email protected]> | 2015-01-08 11:37:29 -0800 |
commit | a739bdeb1d294041984e05046043097a0d9fa833 (patch) | |
tree | 01fe0bb9670e09b06497436dc87af1872358f66b /src/mesa/main/texgetimage.h | |
parent | f51f6805f5dacb89b6583cbe134ee0b374ddfec7 (diff) |
main: Added entry point for glGetTextureImage.
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/main/texgetimage.h')
-rw-r--r-- | src/mesa/main/texgetimage.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/main/texgetimage.h b/src/mesa/main/texgetimage.h index 54739fdafd6..20e7d2db889 100644 --- a/src/mesa/main/texgetimage.h +++ b/src/mesa/main/texgetimage.h @@ -47,6 +47,12 @@ _mesa_GetCompressedTexImage_sw(struct gl_context *ctx, struct gl_texture_image *texImage, GLvoid *data); +extern void +_mesa_get_texture_image(struct gl_context *ctx, + struct gl_texture_object *texObj, + struct gl_texture_image *texImage, GLenum target, + GLint level, GLenum format, GLenum type, + GLsizei bufSize, GLvoid *pixels, bool dsa); extern void GLAPIENTRY @@ -55,6 +61,9 @@ _mesa_GetTexImage( GLenum target, GLint level, extern void GLAPIENTRY _mesa_GetnTexImageARB( GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid *pixels ); +extern void GLAPIENTRY +_mesa_GetTextureImage(GLuint texture, GLint level, GLenum format, + GLenum type, GLsizei bufSize, GLvoid *pixels); extern void GLAPIENTRY _mesa_GetCompressedTexImage(GLenum target, GLint lod, GLvoid *img); |