summaryrefslogtreecommitdiff
path: root/src/render/opengl/mgltypes.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-05-09 20:04:16 +0300
committerAndrei Karas <akaras@inbox.ru>2016-05-09 20:27:19 +0300
commit820ed443d5c96fb96cdc7b1f945ac7c6aaf95cbc (patch)
tree78c2212ce15c202e12685d8a6dcce4a1937edea5 /src/render/opengl/mgltypes.h
parent4ef3a45641bc2c1ada931951c120c4f8b8eb2301 (diff)
downloadplus-820ed443d5c96fb96cdc7b1f945ac7c6aaf95cbc.tar.gz
plus-820ed443d5c96fb96cdc7b1f945ac7c6aaf95cbc.tar.bz2
plus-820ed443d5c96fb96cdc7b1f945ac7c6aaf95cbc.tar.xz
plus-820ed443d5c96fb96cdc7b1f945ac7c6aaf95cbc.zip
Fix issue with DSO.
EXT and ARB extensions have bit different signatures. Disable DSO black list for now.
Diffstat (limited to 'src/render/opengl/mgltypes.h')
-rw-r--r--src/render/opengl/mgltypes.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/render/opengl/mgltypes.h b/src/render/opengl/mgltypes.h
index 96f86bde3..2d02979d4 100644
--- a/src/render/opengl/mgltypes.h
+++ b/src/render/opengl/mgltypes.h
@@ -187,9 +187,14 @@ typedef void (APIENTRY *glGetQueryObjectiv_t) (GLuint id,
GLenum pname, GLint *params);
typedef void (APIENTRY *glGetQueryObjectui64v_t) (GLuint id,
GLenum pname, uint64_t *params);
-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 *glTextureSubImage2DEXT_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 *glTextureSubImage2D_t) (GLuint texture,
+ 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,