From 76e8af2980e29fe02a1d60a265ae16966310c86c Mon Sep 17 00:00:00 2001 From: raster Date: Sun, 24 Oct 2010 13:30:27 +0000 Subject: [PATCH] make sure they are extern fn pointers git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@53831 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/modules/engines/gl_common/evas_gl_common.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/modules/engines/gl_common/evas_gl_common.h b/src/modules/engines/gl_common/evas_gl_common.h index f7bfc39..5624e78 100644 --- a/src/modules/engines/gl_common/evas_gl_common.h +++ b/src/modules/engines/gl_common/evas_gl_common.h @@ -484,18 +484,18 @@ void evas_gl_common_poly_draw(Evas_GL_Context *gc, Evas_GL_Polygon void evas_gl_common_line_draw(Evas_GL_Context *gc, int x1, int y1, int x2, int y2); -void (*glsym_glGenFramebuffers) (GLsizei a, GLuint *b); -void (*glsym_glBindFramebuffer) (GLenum a, GLuint b); -void (*glsym_glFramebufferTexture2D) (GLenum a, GLenum b, GLenum c, GLuint d, GLint e); -void (*glsym_glDeleteFramebuffers) (GLsizei a, const GLuint *b); +extern void (*glsym_glGenFramebuffers) (GLsizei a, GLuint *b); +extern void (*glsym_glBindFramebuffer) (GLenum a, GLuint b); +extern void (*glsym_glFramebufferTexture2D) (GLenum a, GLenum b, GLenum c, GLuint d, GLint e); +extern void (*glsym_glDeleteFramebuffers) (GLsizei a, const GLuint *b); #if defined (GLES_VARIETY_S3C6410) || defined (GLES_VARIETY_SGX) -void *(*secsym_eglCreateImage) (void *a, void *b, GLenum c, void *d, const int *e); -unsigned int (*secsym_eglDestroyImage) (void *a, void *b); -void (*secsym_glEGLImageTargetTexture2DOES) (int a, void *b); -void *(*secsym_eglMapImageSEC) (void *a, void *b); -unsigned int (*secsym_eglUnmapImageSEC) (void *a, void *b); -unsigned int (*secsym_eglGetImageAttribSEC) (void *a, void *b, int c, int *d); +extern void *(*secsym_eglCreateImage) (void *a, void *b, GLenum c, void *d, const int *e); +extern unsigned int (*secsym_eglDestroyImage) (void *a, void *b); +extern void (*secsym_glEGLImageTargetTexture2DOES) (int a, void *b); +extern void *(*secsym_eglMapImageSEC) (void *a, void *b); +extern unsigned int (*secsym_eglUnmapImageSEC) (void *a, void *b); +extern unsigned int (*secsym_eglGetImageAttribSEC) (void *a, void *b, int c, int *d); #endif #define GL_ERRORS 1 -- 2.7.4