diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-10 01:25:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-10 01:25:12 +0300 |
commit | 98d8765769d809b060721bb071ca56887011a6b8 (patch) | |
tree | a58aae9dfc091fcc871cf7d6dbb295a5a958bed2 /src/render/mgltypes.h | |
parent | 42e4aaa2a7fb69376ccb470e1c219030093f578f (diff) | |
download | plus-98d8765769d809b060721bb071ca56887011a6b8.tar.gz plus-98d8765769d809b060721bb071ca56887011a6b8.tar.bz2 plus-98d8765769d809b060721bb071ca56887011a6b8.tar.xz plus-98d8765769d809b060721bb071ca56887011a6b8.zip |
Add support for OpenGL extension GL_ARB_clear_texture.
Diffstat (limited to 'src/render/mgltypes.h')
-rw-r--r-- | src/render/mgltypes.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/render/mgltypes.h b/src/render/mgltypes.h index 24f1e8ca8..48ffbc34d 100644 --- a/src/render/mgltypes.h +++ b/src/render/mgltypes.h @@ -175,6 +175,11 @@ typedef void (APIENTRY *glGetQueryObjectui64v_t) (GLuint id, typedef void (APIENTRY *glTextureSubImage2D_t) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRY *glClearTexImage_t) (GLuint texture, GLint level, + GLenum format, GLenum type, const void * data); +typedef void (APIENTRY *glClearTexSubImage_t) (GLuint texture, GLint level, + GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, + GLsizei depth, GLenum format, GLenum type, const void * data); // callback typedef void (APIENTRY *GLDEBUGPROC_t) (GLenum source, GLenum type, GLuint id, |