Revision: 3818
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3818&view=rev
Author: spasi
Date: 2012-11-06 12:14:03 +0000 (Tue, 06 Nov 2012)
Log Message:
-----------
Removed redundant GLsync definition and replaced APIENTRY with GL_APIENTRY.
Modified Paths:
--------------
trunk/LWJGL/src/native/common/opengles/extgl.h
trunk/LWJGL/src/native/common/opengles/extgl_types.h
Modified: trunk/LWJGL/src/native/common/opengles/extgl.h
===================================================================
--- trunk/LWJGL/src/native/common/opengles/extgl.h 2012-11-06 00:34:36 UTC (rev 3817)
+++ trunk/LWJGL/src/native/common/opengles/extgl.h 2012-11-06 12:14:03 UTC (rev 3818)
@@ -79,7 +79,7 @@
#include "extgl_types.h"
/* KHR_debug callback function pointer. */
-typedef void (APIENTRY *GLDEBUGPROC)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar* message, GLvoid* userParam);
+typedef void (GL_APIENTRY *GLDEBUGPROC)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar* message, GLvoid* userParam);
/* initializes everything, call this right after the rc is created. the function returns true if successful */
extern bool extgl_Open(JNIEnv *env);
Modified: trunk/LWJGL/src/native/common/opengles/extgl_types.h
===================================================================
--- trunk/LWJGL/src/native/common/opengles/extgl_types.h 2012-11-06 00:34:36 UTC (rev 3817)
+++ trunk/LWJGL/src/native/common/opengles/extgl_types.h 2012-11-06 12:14:03 UTC (rev 3818)
@@ -70,7 +70,4 @@
// EGL_image_OES
typedef void* GLeglImageOES;
-// We need this to compile OpenCL
-typedef struct __GLsync * GLsync;
-
#endif
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|