summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge Tavares <george.tavares@sabiax.com.br>2011-05-24 08:35:50 -0300
committerGeorge Tavares <george.tavares@sabiax.com.br>2011-05-24 08:35:50 -0300
commit40ce07c383193ff63e5150603b5275c10edc0b10 (patch)
tree0d05292dcc63e8fb9f8d57ee3c93d51a559acd5a
parentbab20d498dc1ac696e2077a1acb7a338a6ca0c02 (diff)
Fix Windows Crash - APIENTRY is a Win32 macro defined as stdcall__ *
-rwxr-xr-xsrc/glfunctions.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/glfunctions.h b/src/glfunctions.h
index 03b88d1..8529519 100755
--- a/src/glfunctions.h
+++ b/src/glfunctions.h
@@ -45,26 +45,26 @@
#ifndef QT_OPENGL_ES
#ifndef Q_WS_MAC
-# ifndef QGLF_APIENTRYP
-# ifdef QGLF_APIENTRY
-# define QGLF_APIENTRYP QGLF_APIENTRY *
+# ifndef APIENTRYP
+# ifdef APIENTRY
+# define APIENTRYP APIENTRY *
# else
-# define QGLF_APIENTRY
-# define QGLF_APIENTRYP *
+# define APIENTRY
+# define APIENTRYP *
# endif
# endif
#else
-# define QGLF_APIENTRY
-# define QGLF_APIENTRYP *
+# define APIENTRY
+# define APIENTRYP *
#endif
#define GL_TEXTURE0 0x84C0
#define GL_CLAMP_TO_EDGE 0x812F
#define GL_BGRA 0x80E1
-typedef void (QGLF_APIENTRYP type_glActiveTexture)(GLenum texture);
-typedef void (QGLF_APIENTRYP type_glGenerateMipmap)(GLenum target);
-typedef void (QGLF_APIENTRYP type_glVertexAttribPointer)(GLuint, GLint, GLenum, GLboolean, GLsizei, const GLvoid *);
+typedef void (APIENTRYP type_glActiveTexture)(GLenum texture);
+typedef void (APIENTRYP type_glGenerateMipmap)(GLenum target);
+typedef void (APIENTRYP type_glVertexAttribPointer)(GLuint, GLint, GLenum, GLboolean, GLsizei, const GLvoid *);
#define glActiveTexture ((type_glActiveTexture)QGLContext::currentContext()->getProcAddress(QLatin1String("glActiveTexture")))
#define glGenerateMipmap ((type_glGenerateMipmap)QGLContext::currentContext()->getProcAddress(QLatin1String("glGenerateMipmap")))