Removed redundant GLsync definition and replaced APIENTRY with GL_APIENTRY.

This commit is contained in:
Ioannis Tsakpinis 2012-11-06 12:14:03 +00:00
parent 6417afb180
commit be5655a254
2 changed files with 1 additions and 4 deletions

View File

@ -79,7 +79,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
#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);

View File

@ -70,7 +70,4 @@ typedef khronos_uint64_t EGLuint64NV;
// EGL_image_OES
typedef void* GLeglImageOES;
// We need this to compile OpenCL
typedef struct __GLsync * GLsync;
#endif