evas: remove unused parameter.
[framework/uifw/evas.git] / src / modules / engines / software_generic / evas_engine.c
1 #include "evas_common.h" /* Also includes international specific stuff */
2 #include "evas_private.h"
3
4 #ifdef HAVE_DLSYM
5 # include <dlfcn.h>      /* dlopen,dlclose,etc */
6
7 # define EVAS_GL 1
8 # define EVAS_GL_NO_GL_H_CHECK 1
9 # include "Evas_GL.h"
10
11 #else
12 # warning software_generic will not be able to have Evas_GL API.
13 #endif
14
15 #ifdef EVAS_GL
16 //----------------------------------//
17 // OSMesa...
18
19 #define OSMESA_MAJOR_VERSION 6
20 #define OSMESA_MINOR_VERSION 5
21 #define OSMESA_PATCH_VERSION 0
22
23 /*
24  * Values for the format parameter of OSMesaCreateContext()
25  * New in version 2.0.
26  */
27 #define OSMESA_COLOR_INDEX      GL_COLOR_INDEX
28 #define OSMESA_RGBA             GL_RGBA
29 #define OSMESA_BGRA             0x1
30 #define OSMESA_ARGB             0x2
31 #define OSMESA_RGB              GL_RGB
32 #define OSMESA_BGR              0x4
33 #define OSMESA_RGB_565          0x5
34
35
36 /*
37  * OSMesaPixelStore() parameters:
38  * New in version 2.0.
39  */
40 #define OSMESA_ROW_LENGTH       0x10
41 #define OSMESA_Y_UP             0x11
42
43
44 /*
45  * Accepted by OSMesaGetIntegerv:
46  */
47 #define OSMESA_WIDTH            0x20
48 #define OSMESA_HEIGHT           0x21
49 #define OSMESA_FORMAT           0x22
50 #define OSMESA_TYPE             0x23
51 #define OSMESA_MAX_WIDTH        0x24  /* new in 4.0 */
52 #define OSMESA_MAX_HEIGHT       0x25  /* new in 4.0 */
53
54
55 typedef void (*OSMESAproc)();
56 typedef struct osmesa_context *OSMesaContext;
57 #endif
58
59 typedef struct _Render_Engine_GL_Surface    Render_Engine_GL_Surface;
60 typedef struct _Render_Engine_GL_Context    Render_Engine_GL_Context;
61
62 struct _Render_Engine_GL_Surface
63 {
64    int     initialized;
65    int     w, h;
66
67 #ifdef EVAS_GL
68    GLenum  internal_fmt;
69 #endif
70    int     internal_cpp;   // Component per pixel.  ie. RGB = 3
71
72    int     depth_bits;
73    int     stencil_bits;
74
75    // Data 
76    void   *buffer;
77
78    Render_Engine_GL_Context   *current_ctx;
79 };
80
81 #ifdef EVAS_GL
82 struct _Render_Engine_GL_Context
83 {
84    int            initialized;
85
86    OSMesaContext  context;
87
88    Render_Engine_GL_Context   *share_ctx;
89
90    Render_Engine_GL_Surface   *current_sfc;
91 };
92
93 //------------------------------------------------------//
94 typedef void                   (*_eng_fn) (void );
95 typedef _eng_fn                (*glsym_func_eng_fn) ();
96 typedef void                   (*glsym_func_void) ();
97 typedef unsigned int           (*glsym_func_uint) ();
98 typedef int                    (*glsym_func_int) ();
99 typedef unsigned char          (*glsym_func_uchar) ();
100 typedef unsigned char         *(*glsym_func_uchar_ptr) ();
101 typedef const unsigned char   *(*glsym_func_const_uchar_ptr) ();
102 typedef char const            *(*glsym_func_char_const_ptr) ();
103 typedef GLboolean              (*glsym_func_bool) ();
104 typedef OSMesaContext          (*glsym_func_osm_ctx) ();
105 //------------------------------------------------------//
106
107 /* Function table for GL APIs */
108 static Evas_GL_API gl_funcs;
109 static void *gl_lib_handle;
110 static int gl_lib_is_gles = 0;
111 static Evas_GL_API gl_funcs;
112
113 //------------------------------------------------------//
114 // OSMesa APIS...
115 static OSMesaContext (*_sym_OSMesaCreateContextExt)             (GLenum format, GLint depthBits, GLint stencilBits, GLint accumBits, OSMesaContext sharelist) = NULL;
116 static void          (*_sym_OSMesaDestroyContext)               (OSMesaContext ctx) = NULL;
117 static GLboolean     (*_sym_OSMesaMakeCurrent)                  (OSMesaContext ctx, void *buffer, GLenum type, GLsizei width, GLsizei height) = NULL;
118 static void          (*_sym_OSMesaPixelStore)                   (GLint pname, GLint value) = NULL;
119 static OSMESAproc    (*_sym_OSMesaGetProcAddress)               (const char *funcName);
120
121
122 //------------------------------------------------------//
123 // GLES 2.0 APIs...
124 static void       (*_sym_glActiveTexture)                       (GLenum texture) = NULL;
125 static void       (*_sym_glAttachShader)                        (GLuint program, GLuint shader) = NULL;
126 static void       (*_sym_glBindAttribLocation)                  (GLuint program, GLuint index, const char* name) = NULL;
127 static void       (*_sym_glBindBuffer)                          (GLenum target, GLuint buffer) = NULL;
128 static void       (*_sym_glBindFramebuffer)                     (GLenum target, GLuint framebuffer) = NULL;
129 static void       (*_sym_glBindRenderbuffer)                    (GLenum target, GLuint renderbuffer) = NULL;
130 static void       (*_sym_glBindTexture)                         (GLenum target, GLuint texture) = NULL;
131 static void       (*_sym_glBlendColor)                          (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) = NULL;
132 static void       (*_sym_glBlendEquation)                       (GLenum mode) = NULL;
133 static void       (*_sym_glBlendEquationSeparate)               (GLenum modeRGB, GLenum modeAlpha) = NULL;
134 static void       (*_sym_glBlendFunc)                           (GLenum sfactor, GLenum dfactor) = NULL;
135 static void       (*_sym_glBlendFuncSeparate)                   (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha) = NULL;
136 static void       (*_sym_glBufferData)                          (GLenum target, GLsizeiptr size, const void* data, GLenum usage) = NULL;
137 static void       (*_sym_glBufferSubData)                       (GLenum target, GLintptr offset, GLsizeiptr size, const void* data) = NULL;
138 static GLenum     (*_sym_glCheckFramebufferStatus)              (GLenum target) = NULL;
139 static void       (*_sym_glClear)                               (GLbitfield mask) = NULL;
140 static void       (*_sym_glClearColor)                          (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) = NULL;
141 static void       (*_sym_glClearDepthf)                         (GLclampf depth) = NULL;
142 static void       (*_sym_glClearStencil)                        (GLint s) = NULL;
143 static void       (*_sym_glColorMask)                           (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) = NULL;
144 static void       (*_sym_glCompileShader)                       (GLuint shader) = NULL;
145 static void       (*_sym_glCompressedTexImage2D)                (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void* data) = NULL;
146 static void       (*_sym_glCompressedTexSubImage2D)             (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void* data) = NULL;
147 static void       (*_sym_glCopyTexImage2D)                      (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) = NULL;
148 static void       (*_sym_glCopyTexSubImage2D)                   (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) = NULL;
149 static GLuint     (*_sym_glCreateProgram)                       (void) = NULL;
150 static GLuint     (*_sym_glCreateShader)                        (GLenum type) = NULL;
151 static void       (*_sym_glCullFace)                            (GLenum mode) = NULL;
152 static void       (*_sym_glDeleteBuffers)                       (GLsizei n, const GLuint* buffers) = NULL;
153 static void       (*_sym_glDeleteFramebuffers)                  (GLsizei n, const GLuint* framebuffers) = NULL;
154 static void       (*_sym_glDeleteProgram)                       (GLuint program) = NULL;
155 static void       (*_sym_glDeleteRenderbuffers)                 (GLsizei n, const GLuint* renderbuffers) = NULL;
156 static void       (*_sym_glDeleteShader)                        (GLuint shader) = NULL;
157 static void       (*_sym_glDeleteTextures)                      (GLsizei n, const GLuint* textures) = NULL;
158 static void       (*_sym_glDepthFunc)                           (GLenum func) = NULL;
159 static void       (*_sym_glDepthMask)                           (GLboolean flag) = NULL;
160 static void       (*_sym_glDepthRangef)                         (GLclampf zNear, GLclampf zFar) = NULL;
161 static void       (*_sym_glDetachShader)                        (GLuint program, GLuint shader) = NULL;
162 static void       (*_sym_glDisable)                             (GLenum cap) = NULL;
163 static void       (*_sym_glDisableVertexAttribArray)            (GLuint index) = NULL;
164 static void       (*_sym_glDrawArrays)                          (GLenum mode, GLint first, GLsizei count) = NULL;
165 static void       (*_sym_glDrawElements)                        (GLenum mode, GLsizei count, GLenum type, const void* indices) = NULL;
166 static void       (*_sym_glEnable)                              (GLenum cap) = NULL;
167 static void       (*_sym_glEnableVertexAttribArray)             (GLuint index) = NULL;
168 static void       (*_sym_glFinish)                              (void) = NULL;
169 static void       (*_sym_glFlush)                               (void) = NULL;
170 static void       (*_sym_glFramebufferRenderbuffer)             (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer) = NULL;
171 static void       (*_sym_glFramebufferTexture2D)                (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) = NULL;
172 static void       (*_sym_glFrontFace)                           (GLenum mode) = NULL;
173 static void       (*_sym_glGenBuffers)                          (GLsizei n, GLuint* buffers) = NULL;
174 static void       (*_sym_glGenerateMipmap)                      (GLenum target) = NULL;
175 static void       (*_sym_glGenFramebuffers)                     (GLsizei n, GLuint* framebuffers) = NULL;
176 static void       (*_sym_glGenRenderbuffers)                    (GLsizei n, GLuint* renderbuffers) = NULL;
177 static void       (*_sym_glGenTextures)                         (GLsizei n, GLuint* textures) = NULL;
178 static void       (*_sym_glGetActiveAttrib)                     (GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, char* name) = NULL;
179 static void       (*_sym_glGetActiveUniform)                    (GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, char* name) = NULL;
180 static void       (*_sym_glGetAttachedShaders)                  (GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders) = NULL;
181 static int        (*_sym_glGetAttribLocation)                   (GLuint program, const char* name) = NULL;
182 static void       (*_sym_glGetBooleanv)                         (GLenum pname, GLboolean* params) = NULL;
183 static void       (*_sym_glGetBufferParameteriv)                (GLenum target, GLenum pname, GLint* params) = NULL;
184 static GLenum     (*_sym_glGetError)                            (void) = NULL;
185 static void       (*_sym_glGetFloatv)                           (GLenum pname, GLfloat* params) = NULL;
186 static void       (*_sym_glGetFramebufferAttachmentParameteriv) (GLenum target, GLenum attachment, GLenum pname, GLint* params) = NULL;
187 static void       (*_sym_glGetIntegerv)                         (GLenum pname, GLint* params) = NULL;
188 static void       (*_sym_glGetProgramiv)                        (GLuint program, GLenum pname, GLint* params) = NULL;
189 static void       (*_sym_glGetProgramInfoLog)                   (GLuint program, GLsizei bufsize, GLsizei* length, char* infolog) = NULL;
190 static void       (*_sym_glGetRenderbufferParameteriv)          (GLenum target, GLenum pname, GLint* params) = NULL;
191 static void       (*_sym_glGetShaderiv)                         (GLuint shader, GLenum pname, GLint* params) = NULL;
192 static void       (*_sym_glGetShaderInfoLog)                    (GLuint shader, GLsizei bufsize, GLsizei* length, char* infolog) = NULL;
193 static void       (*_sym_glGetShaderPrecisionFormat)            (GLenum shadertype, GLenum precisiontype, GLint* range, GLint* precision) = NULL;
194 static void       (*_sym_glGetShaderSource)                     (GLuint shader, GLsizei bufsize, GLsizei* length, char* source) = NULL;
195 static const GLubyte *(*_sym_glGetString)                           (GLenum name) = NULL;
196 static void       (*_sym_glGetTexParameterfv)                   (GLenum target, GLenum pname, GLfloat* params) = NULL;
197 static void       (*_sym_glGetTexParameteriv)                   (GLenum target, GLenum pname, GLint* params) = NULL;
198 static void       (*_sym_glGetUniformfv)                        (GLuint program, GLint location, GLfloat* params) = NULL;
199 static void       (*_sym_glGetUniformiv)                        (GLuint program, GLint location, GLint* params) = NULL;
200 static int        (*_sym_glGetUniformLocation)                  (GLuint program, const char* name) = NULL;
201 static void       (*_sym_glGetVertexAttribfv)                   (GLuint index, GLenum pname, GLfloat* params) = NULL;
202 static void       (*_sym_glGetVertexAttribiv)                   (GLuint index, GLenum pname, GLint* params) = NULL;
203 static void       (*_sym_glGetVertexAttribPointerv)             (GLuint index, GLenum pname, void** pointer) = NULL;
204 static void       (*_sym_glHint)                                (GLenum target, GLenum mode) = NULL;
205 static GLboolean  (*_sym_glIsBuffer)                            (GLuint buffer) = NULL;
206 static GLboolean  (*_sym_glIsEnabled)                           (GLenum cap) = NULL;
207 static GLboolean  (*_sym_glIsFramebuffer)                       (GLuint framebuffer) = NULL;
208 static GLboolean  (*_sym_glIsProgram)                           (GLuint program) = NULL;
209 static GLboolean  (*_sym_glIsRenderbuffer)                      (GLuint renderbuffer) = NULL;
210 static GLboolean  (*_sym_glIsShader)                            (GLuint shader) = NULL;
211 static GLboolean  (*_sym_glIsTexture)                           (GLuint texture) = NULL;
212 static void       (*_sym_glLineWidth)                           (GLfloat width) = NULL;
213 static void       (*_sym_glLinkProgram)                         (GLuint program) = NULL;
214 static void       (*_sym_glPixelStorei)                         (GLenum pname, GLint param) = NULL;
215 static void       (*_sym_glPolygonOffset)                       (GLfloat factor, GLfloat units) = NULL;
216 static void       (*_sym_glReadPixels)                          (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void* pixels) = NULL;
217 static void       (*_sym_glReleaseShaderCompiler)               (void) = NULL;
218 static void       (*_sym_glRenderbufferStorage)                 (GLenum target, GLenum internalformat, GLsizei width, GLsizei height) = NULL;
219 static void       (*_sym_glSampleCoverage)                      (GLclampf value, GLboolean invert) = NULL;
220 static void       (*_sym_glScissor)                             (GLint x, GLint y, GLsizei width, GLsizei height) = NULL;
221 static void       (*_sym_glShaderBinary)                        (GLsizei n, const GLuint* shaders, GLenum binaryformat, const void* binary, GLsizei length) = NULL;
222 static void       (*_sym_glShaderSource)                        (GLuint shader, GLsizei count, const char** string, const GLint* length) = NULL;
223 static void       (*_sym_glStencilFunc)                         (GLenum func, GLint ref, GLuint mask) = NULL;
224 static void       (*_sym_glStencilFuncSeparate)                 (GLenum face, GLenum func, GLint ref, GLuint mask) = NULL;
225 static void       (*_sym_glStencilMask)                         (GLuint mask) = NULL;
226 static void       (*_sym_glStencilMaskSeparate)                 (GLenum face, GLuint mask) = NULL;
227 static void       (*_sym_glStencilOp)                           (GLenum fail, GLenum zfail, GLenum zpass) = NULL;
228 static void       (*_sym_glStencilOpSeparate)                   (GLenum face, GLenum fail, GLenum zfail, GLenum zpass) = NULL;
229 static void       (*_sym_glTexImage2D)                          (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void* pixels) = NULL;
230 static void       (*_sym_glTexParameterf)                       (GLenum target, GLenum pname, GLfloat param) = NULL;
231 static void       (*_sym_glTexParameterfv)                      (GLenum target, GLenum pname, const GLfloat* params) = NULL;
232 static void       (*_sym_glTexParameteri)                       (GLenum target, GLenum pname, GLint param) = NULL;
233 static void       (*_sym_glTexParameteriv)                      (GLenum target, GLenum pname, const GLint* params) = NULL;
234 static void       (*_sym_glTexSubImage2D)                       (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void* pixels) = NULL;
235 static void       (*_sym_glUniform1f)                           (GLint location, GLfloat x) = NULL;
236 static void       (*_sym_glUniform1fv)                          (GLint location, GLsizei count, const GLfloat* v) = NULL;
237 static void       (*_sym_glUniform1i)                           (GLint location, GLint x) = NULL;
238 static void       (*_sym_glUniform1iv)                          (GLint location, GLsizei count, const GLint* v) = NULL;
239 static void       (*_sym_glUniform2f)                           (GLint location, GLfloat x, GLfloat y) = NULL;
240 static void       (*_sym_glUniform2fv)                          (GLint location, GLsizei count, const GLfloat* v) = NULL;
241 static void       (*_sym_glUniform2i)                           (GLint location, GLint x, GLint y) = NULL;
242 static void       (*_sym_glUniform2iv)                          (GLint location, GLsizei count, const GLint* v) = NULL;
243 static void       (*_sym_glUniform3f)                           (GLint location, GLfloat x, GLfloat y, GLfloat z) = NULL;
244 static void       (*_sym_glUniform3fv)                          (GLint location, GLsizei count, const GLfloat* v) = NULL;
245 static void       (*_sym_glUniform3i)                           (GLint location, GLint x, GLint y, GLint z) = NULL;
246 static void       (*_sym_glUniform3iv)                          (GLint location, GLsizei count, const GLint* v) = NULL;
247 static void       (*_sym_glUniform4f)                           (GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w) = NULL;
248 static void       (*_sym_glUniform4fv)                          (GLint location, GLsizei count, const GLfloat* v) = NULL;
249 static void       (*_sym_glUniform4i)                           (GLint location, GLint x, GLint y, GLint z, GLint w) = NULL;
250 static void       (*_sym_glUniform4iv)                          (GLint location, GLsizei count, const GLint* v) = NULL;
251 static void       (*_sym_glUniformMatrix2fv)                    (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) = NULL;
252 static void       (*_sym_glUniformMatrix3fv)                    (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) = NULL;
253 static void       (*_sym_glUniformMatrix4fv)                    (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value) = NULL;
254 static void       (*_sym_glUseProgram)                          (GLuint program) = NULL;
255 static void       (*_sym_glValidateProgram)                     (GLuint program) = NULL;
256 static void       (*_sym_glVertexAttrib1f)                      (GLuint indx, GLfloat x) = NULL;
257 static void       (*_sym_glVertexAttrib1fv)                     (GLuint indx, const GLfloat* values) = NULL;
258 static void       (*_sym_glVertexAttrib2f)                      (GLuint indx, GLfloat x, GLfloat y) = NULL;
259 static void       (*_sym_glVertexAttrib2fv)                     (GLuint indx, const GLfloat* values) = NULL;
260 static void       (*_sym_glVertexAttrib3f)                      (GLuint indx, GLfloat x, GLfloat y, GLfloat z) = NULL;
261 static void       (*_sym_glVertexAttrib3fv)                     (GLuint indx, const GLfloat* values) = NULL;
262 static void       (*_sym_glVertexAttrib4f)                      (GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w) = NULL;
263 static void       (*_sym_glVertexAttrib4fv)                     (GLuint indx, const GLfloat* values) = NULL;
264 static void       (*_sym_glVertexAttribPointer)                 (GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void* ptr) = NULL;
265 static void       (*_sym_glViewport)                            (GLint x, GLint y, GLsizei width, GLsizei height) = NULL;
266
267 // GLES Extensions...
268 /* static void       (*_sym_glGetProgramBinary)                    (GLuint a, GLsizei b, GLsizei* c, GLenum* d, void* e) = NULL; */
269 /* static void       (*_sym_glProgramBinary)                       (GLuint a, GLenum b, const void* c, GLint d) = NULL; */
270 /* static void       (*_sym_glProgramParameteri)                   (GLuint a, GLuint b, GLint d) = NULL; */
271 #endif
272
273 /*
274  *****
275  **
276  ** ENGINE ROUTINES
277  **
278  *****
279  */
280 static int cpunum = 0;
281 static int _evas_soft_gen_log_dom = -1;
282
283 static void
284 eng_output_dump(void *data __UNUSED__)
285 {
286    evas_common_image_image_all_unload();
287    evas_common_font_font_all_unload();
288 }
289
290 static void *
291 eng_context_new(void *data __UNUSED__)
292 {
293    return evas_common_draw_context_new();
294 }
295
296 static void
297 eng_context_free(void *data __UNUSED__, void *context)
298 {
299    evas_common_draw_context_free(context);
300 }
301
302 static void
303 eng_context_clip_set(void *data __UNUSED__, void *context, int x, int y, int w, int h)
304 {
305    evas_common_draw_context_set_clip(context, x, y, w, h);
306 }
307
308 static void
309 eng_context_clip_clip(void *data __UNUSED__, void *context, int x, int y, int w, int h)
310 {
311    evas_common_draw_context_clip_clip(context, x, y, w, h);
312 }
313
314 static void
315 eng_context_clip_unset(void *data __UNUSED__, void *context)
316 {
317    evas_common_draw_context_unset_clip(context);
318 }
319
320 static int
321 eng_context_clip_get(void *data __UNUSED__, void *context, int *x, int *y, int *w, int *h)
322 {
323    *x = ((RGBA_Draw_Context *)context)->clip.x;
324    *y = ((RGBA_Draw_Context *)context)->clip.y;
325    *w = ((RGBA_Draw_Context *)context)->clip.w;
326    *h = ((RGBA_Draw_Context *)context)->clip.h;
327    return ((RGBA_Draw_Context *)context)->clip.use;
328 }
329
330 static void
331 eng_context_color_set(void *data __UNUSED__, void *context, int r, int g, int b, int a)
332 {
333    evas_common_draw_context_set_color(context, r, g, b, a);
334 }
335
336 static int
337 eng_context_color_get(void *data __UNUSED__, void *context, int *r, int *g, int *b, int *a)
338 {
339    *r = (int)(R_VAL(&((RGBA_Draw_Context *)context)->col.col));
340    *g = (int)(G_VAL(&((RGBA_Draw_Context *)context)->col.col));
341    *b = (int)(B_VAL(&((RGBA_Draw_Context *)context)->col.col));
342    *a = (int)(A_VAL(&((RGBA_Draw_Context *)context)->col.col));
343    return 1;
344 }
345
346 static void
347 eng_context_multiplier_set(void *data __UNUSED__, void *context, int r, int g, int b, int a)
348 {
349    evas_common_draw_context_set_multiplier(context, r, g, b, a);
350 }
351
352 static void
353 eng_context_multiplier_unset(void *data __UNUSED__, void *context)
354 {
355    evas_common_draw_context_unset_multiplier(context);
356 }
357
358 static int
359 eng_context_multiplier_get(void *data __UNUSED__, void *context, int *r, int *g, int *b, int *a)
360 {
361    *r = (int)(R_VAL(&((RGBA_Draw_Context *)context)->mul.col));
362    *g = (int)(G_VAL(&((RGBA_Draw_Context *)context)->mul.col));
363    *b = (int)(B_VAL(&((RGBA_Draw_Context *)context)->mul.col));
364    *a = (int)(A_VAL(&((RGBA_Draw_Context *)context)->mul.col));
365    return ((RGBA_Draw_Context *)context)->mul.use;
366 }
367
368 static void
369 eng_context_mask_set(void *data __UNUSED__, void *context, void *mask, int x, int y, int w, int h)
370 {
371    evas_common_draw_context_set_mask(context, mask, x, y, w, h);
372 }
373
374 static void
375 eng_context_mask_unset(void *data __UNUSED__, void *context)
376 {
377    evas_common_draw_context_unset_mask(context);
378 }
379 /*
380 static void *
381 eng_context_mask_get(void *data __UNUSED__, void *context)
382 {
383    return ((RGBA_Draw_Context *)context)->mask.mask;
384 }
385 */
386
387 static void
388 eng_context_cutout_add(void *data __UNUSED__, void *context, int x, int y, int w, int h)
389 {
390    evas_common_draw_context_add_cutout(context, x, y, w, h);
391 }
392
393 static void
394 eng_context_cutout_clear(void *data __UNUSED__, void *context)
395 {
396    evas_common_draw_context_clear_cutouts(context);
397 }
398
399 static void
400 eng_context_anti_alias_set(void *data __UNUSED__, void *context, unsigned char aa)
401 {
402    evas_common_draw_context_set_anti_alias(context, aa);
403 }
404
405 static unsigned char
406 eng_context_anti_alias_get(void *data __UNUSED__, void *context)
407 {
408    return ((RGBA_Draw_Context *)context)->anti_alias;
409 }
410
411 static void
412 eng_context_color_interpolation_set(void *data __UNUSED__, void *context, int color_space)
413 {
414    evas_common_draw_context_set_color_interpolation(context, color_space);
415 }
416
417 static int
418 eng_context_color_interpolation_get(void *data __UNUSED__, void *context)
419 {
420    return ((RGBA_Draw_Context *)context)->interpolation.color_space;
421 }
422
423 static void
424 eng_context_render_op_set(void *data __UNUSED__, void *context, int op)
425 {
426    evas_common_draw_context_set_render_op(context, op);
427 }
428
429 static int
430 eng_context_render_op_get(void *data __UNUSED__, void *context)
431 {
432    return ((RGBA_Draw_Context *)context)->render_op;
433 }
434
435
436
437 static void
438 eng_rectangle_draw(void *data __UNUSED__, void *context, void *surface, int x, int y, int w, int h)
439 {
440 #ifdef BUILD_PIPE_RENDER
441    if ((cpunum > 1))
442      evas_common_pipe_rectangle_draw(surface, context, x, y, w, h);
443    else
444 #endif
445      {
446         evas_common_rectangle_draw(surface, context, x, y, w, h);
447         evas_common_cpu_end_opt();
448      }
449 }
450
451 static void
452 eng_line_draw(void *data __UNUSED__, void *context, void *surface, int x1, int y1, int x2, int y2)
453 {
454 #ifdef BUILD_PIPE_RENDER
455    if ((cpunum > 1))
456     evas_common_pipe_line_draw(surface, context, x1, y1, x2, y2);
457    else
458 #endif   
459      {
460         evas_common_line_draw(surface, context, x1, y1, x2, y2);
461         evas_common_cpu_end_opt();
462      }
463 }
464
465 static void *
466 eng_polygon_point_add(void *data __UNUSED__, void *context __UNUSED__, void *polygon, int x, int y)
467 {
468    return evas_common_polygon_point_add(polygon, x, y);
469 }
470
471 static void *
472 eng_polygon_points_clear(void *data __UNUSED__, void *context __UNUSED__, void *polygon)
473 {
474    return evas_common_polygon_points_clear(polygon);
475 }
476
477 static void
478 eng_polygon_draw(void *data __UNUSED__, void *context, void *surface, void *polygon, int x, int y)
479 {
480 #ifdef BUILD_PIPE_RENDER
481    if ((cpunum > 1))
482      evas_common_pipe_poly_draw(surface, context, polygon, x, y);
483    else
484 #endif
485      {
486         evas_common_polygon_draw(surface, context, polygon, x, y);
487         evas_common_cpu_end_opt();
488      }
489 }
490
491 static int
492 eng_image_alpha_get(void *data __UNUSED__, void *image)
493 {
494    Image_Entry *im;
495
496    if (!image) return 1;
497    im = image;
498    switch (im->space)
499      {
500       case EVAS_COLORSPACE_ARGB8888:
501         if (im->flags.alpha) return 1;
502       default:
503         break;
504      }
505    return 0;
506 }
507
508 static int
509 eng_image_colorspace_get(void *data __UNUSED__, void *image)
510 {
511    Image_Entry *im;
512
513    if (!image) return EVAS_COLORSPACE_ARGB8888;
514    im = image;
515    return im->space;
516 }
517
518 static Eina_Bool
519 eng_image_can_region_get(void *data __UNUSED__, void *image)
520 {
521    Image_Entry *im;
522    if (!image) return EINA_FALSE;
523    im = image;
524    return ((Evas_Image_Load_Func*) im->info.loader)->do_region;
525 }
526
527 static void
528 eng_image_mask_create(void *data __UNUSED__, void *image)
529 {
530    RGBA_Image *im;
531    int sz;
532    uint8_t *dst,*end;
533    uint32_t *src;
534
535    if (!image) return;
536    im = image;
537    if (im->mask.mask && !im->mask.dirty) return;
538
539    if (im->mask.mask) free(im->mask.mask);
540    sz = im->cache_entry.w * im->cache_entry.h;
541    im->mask.mask = malloc(sz);
542    dst = im->mask.mask;
543    if (!im->image.data)
544       evas_cache_image_load_data(&im->cache_entry);
545    src = (void*) im->image.data;
546    if (!src) return;
547    for (end = dst + sz ; dst < end ; dst ++, src ++)
548       *dst = *src >> 24;
549    im->mask.dirty = 0;
550 }
551
552
553 static void *
554 eng_image_alpha_set(void *data __UNUSED__, void *image, int has_alpha)
555 {
556    RGBA_Image *im;
557
558    if (!image) return NULL;
559    im = image;
560    if (im->cache_entry.space != EVAS_COLORSPACE_ARGB8888)
561      {
562         im->cache_entry.flags.alpha = 0;
563         return im;
564      }
565    im = (RGBA_Image *) evas_cache_image_alone(&im->cache_entry);
566    evas_common_image_colorspace_dirty(im);
567
568    im->cache_entry.flags.alpha = has_alpha ? 1 : 0;
569    return im;
570 }
571
572 static void *
573 eng_image_border_set(void *data __UNUSED__, void *image, int l __UNUSED__, int r __UNUSED__, int t __UNUSED__, int b __UNUSED__)
574 {
575    RGBA_Image *im;
576
577    im = image;
578    return im;
579 }
580
581 static void
582 eng_image_border_get(void *data __UNUSED__, void *image __UNUSED__, int *l __UNUSED__, int *r __UNUSED__, int *t __UNUSED__, int *b __UNUSED__)
583 {
584 }
585
586 static char *
587 eng_image_comment_get(void *data __UNUSED__, void *image, char *key __UNUSED__)
588 {
589    RGBA_Image *im;
590
591    if (!image) return NULL;
592    im = image;
593    return im->info.comment;
594 }
595
596 static char *
597 eng_image_format_get(void *data __UNUSED__, void *image __UNUSED__)
598 {
599    return NULL;
600 }
601
602 static void
603 eng_image_colorspace_set(void *data __UNUSED__, void *image, int cspace)
604 {
605    Image_Entry *im;
606
607    if (!image) return;
608    im = image;
609    evas_cache_image_colorspace(im, cspace);
610 }
611
612 static void *
613 eng_image_native_set(void *data __UNUSED__, void *image, void *native __UNUSED__)
614 {
615    //return image;
616    Evas_Native_Surface *ns = native;
617    Image_Entry *im = image, *im2 = NULL;
618
619    if (!im)
620      {
621         if ((!ns) && (ns->data.x11.visual))
622           {
623              im = evas_cache_image_data(evas_common_image_cache_get(),
624                                         im->w, im->h,
625                                         ns->data.x11.visual, 1,
626                                         EVAS_COLORSPACE_ARGB8888);
627              return im;
628           }
629         else
630            return NULL;
631      }
632
633    if ((!ns) && (!im)) return im;
634
635    if (!ns) return im;
636
637    im2 = evas_cache_image_data(evas_common_image_cache_get(), 
638                                im->w, im->h, 
639                                ns->data.x11.visual, 1,
640                                EVAS_COLORSPACE_ARGB8888);
641    evas_cache_image_drop(im);
642    im = im2;
643
644    return im;
645
646 }
647
648 static void *
649 eng_image_native_get(void *data __UNUSED__, void *image __UNUSED__)
650 {
651    return NULL;
652 }
653
654 static void *
655 eng_image_load(void *data __UNUSED__, const char *file, const char *key, int *error, Evas_Image_Load_Opts *lo)
656 {
657    *error = EVAS_LOAD_ERROR_NONE;
658    return evas_common_load_image_from_file(file, key, lo, error);
659 }
660
661 static void *
662 eng_image_new_from_data(void *data __UNUSED__, int w, int h, DATA32 *image_data, int alpha, int cspace)
663 {
664    return evas_cache_image_data(evas_common_image_cache_get(), w, h, image_data, alpha, cspace);
665 }
666
667 static void *
668 eng_image_new_from_copied_data(void *data __UNUSED__, int w, int h, DATA32 *image_data, int alpha, int cspace)
669 {
670    return evas_cache_image_copied_data(evas_common_image_cache_get(), w, h, image_data, alpha, cspace);
671 }
672
673 static void
674 eng_image_free(void *data __UNUSED__, void *image)
675 {
676    evas_cache_image_drop(image);
677 }
678
679 static void
680 eng_image_size_get(void *data __UNUSED__, void *image, int *w, int *h)
681 {
682    Image_Entry *im;
683
684    im = image;
685    if (w) *w = im->w;
686    if (h) *h = im->h;
687 }
688
689 static void *
690 eng_image_size_set(void *data __UNUSED__, void *image, int w, int h)
691 {
692    Image_Entry *im = image;
693    if (!im) return NULL;
694    return evas_cache_image_size_set(im, w, h);
695 }
696
697 static void *
698 eng_image_dirty_region(void *data __UNUSED__, void *image, int x, int y, int w, int h)
699 {
700    Image_Entry *im = image;
701    if (!im) return NULL;
702    return evas_cache_image_dirty(im, x, y, w, h);
703 }
704
705 static void *
706 eng_image_data_get(void *data __UNUSED__, void *image, int to_write, DATA32 **image_data, int *err)
707 {
708    RGBA_Image *im;
709    int error;
710
711    if (!image)
712      {
713         *image_data = NULL;
714         return NULL;
715      }
716    im = image;
717    error = evas_cache_image_load_data(&im->cache_entry);
718    switch (im->cache_entry.space)
719      {
720       case EVAS_COLORSPACE_ARGB8888:
721         if (to_write)
722           im = (RGBA_Image *)evas_cache_image_alone(&im->cache_entry);
723         *image_data = im->image.data;
724         break;
725       case EVAS_COLORSPACE_YCBCR422P601_PL:
726       case EVAS_COLORSPACE_YCBCR422P709_PL:
727       case EVAS_COLORSPACE_YCBCR422601_PL:
728       case EVAS_COLORSPACE_YCBCR420NV12601_PL:
729       case EVAS_COLORSPACE_YCBCR420TM12601_PL:
730         *image_data = im->cs.data;
731         break;
732       default:
733         abort();
734         break;
735      }
736    if (err) *err = error;
737    return im;
738 }
739
740 static void *
741 eng_image_data_put(void *data, void *image, DATA32 *image_data)
742 {
743    RGBA_Image *im, *im2;
744
745    if (!image) return NULL;
746    im = image;
747    switch (im->cache_entry.space)
748      {
749       case EVAS_COLORSPACE_ARGB8888:
750         if (image_data != im->image.data)
751           {
752              int w, h;
753
754              w = im->cache_entry.w;
755              h = im->cache_entry.h;
756              im2 = eng_image_new_from_data(data, w, h, image_data,
757                                            eng_image_alpha_get(data, image),
758                                            eng_image_colorspace_get(data, image));
759              evas_cache_image_drop(&im->cache_entry);
760              im = im2;
761           }
762         break;
763       case EVAS_COLORSPACE_YCBCR422P601_PL:
764       case EVAS_COLORSPACE_YCBCR422P709_PL:
765       case EVAS_COLORSPACE_YCBCR422601_PL:
766       case EVAS_COLORSPACE_YCBCR420NV12601_PL:
767       case EVAS_COLORSPACE_YCBCR420TM12601_PL:
768         if (image_data != im->cs.data)
769           {
770              if (im->cs.data)
771                {
772                   if (!im->cs.no_free) free(im->cs.data);
773                }
774              im->cs.data = image_data;
775           }
776         evas_common_image_colorspace_dirty(im);
777         break;
778       default:
779         abort();
780         break;
781      }
782    return im;
783 }
784
785 static void
786 eng_image_data_preload_request(void *data __UNUSED__, void *image, const void *target)
787 {
788    RGBA_Image *im = image;
789
790    if (!im) return ;
791    evas_cache_image_preload_data(&im->cache_entry, target);
792 }
793
794 static void
795 eng_image_data_preload_cancel(void *data __UNUSED__, void *image, const void *target)
796 {
797    RGBA_Image *im = image;
798
799    if (!im) return ;
800    evas_cache_image_preload_cancel(&im->cache_entry, target);
801 }
802
803 static void
804 eng_image_draw(void *data __UNUSED__, void *context, void *surface, void *image, int src_x, int src_y, int src_w, int src_h, int dst_x, int dst_y, int dst_w, int dst_h, int smooth)
805 {
806    RGBA_Image *im;
807
808    if (!image) return;
809    im = image;
810 #ifdef BUILD_PIPE_RENDER
811    if ((cpunum > 1))
812      {
813         evas_common_rgba_image_scalecache_prepare((Image_Entry *)(im), 
814                                                   surface, context, smooth,
815                                                   src_x, src_y, src_w, src_h,
816                                                   dst_x, dst_y, dst_w, dst_h);
817         
818         evas_common_pipe_image_draw(im, surface, context, smooth,
819                                     src_x, src_y, src_w, src_h,
820                                     dst_x, dst_y, dst_w, dst_h);
821      }
822    else
823 #endif
824      {
825 //        if (im->cache_entry.space == EVAS_COLORSPACE_ARGB8888)
826 //          evas_cache_image_load_data(&im->cache_entry);
827 //        evas_common_image_colorspace_normalize(im);
828         evas_common_rgba_image_scalecache_prepare(&im->cache_entry, surface, context, smooth,
829                                                   src_x, src_y, src_w, src_h,
830                                                   dst_x, dst_y, dst_w, dst_h);
831         evas_common_rgba_image_scalecache_do(&im->cache_entry, surface, context, smooth,
832                                              src_x, src_y, src_w, src_h,
833                                              dst_x, dst_y, dst_w, dst_h);
834 /*        
835         if (smooth)
836           evas_common_scale_rgba_in_to_out_clip_smooth(im, surface, context,
837                                                        src_x, src_y, src_w, src_h,
838                                                        dst_x, dst_y, dst_w, dst_h);
839         else
840           evas_common_scale_rgba_in_to_out_clip_sample(im, surface, context,
841                                                        src_x, src_y, src_w, src_h,
842                                                        dst_x, dst_y, dst_w, dst_h);
843  */
844         evas_common_cpu_end_opt();
845      }
846 }
847
848 static void
849 eng_image_map_draw(void *data __UNUSED__, void *context, void *surface, void *image, int npoints, RGBA_Map_Point *p, int smooth, int level)
850 {
851    RGBA_Image *im;
852
853    if (!image) return;
854    if (npoints < 3) return;
855    im = image;
856
857    if ((p[0].x == p[3].x) &&
858        (p[1].x == p[2].x) &&
859        (p[0].y == p[1].y) &&
860        (p[3].y == p[2].y) &&
861        (p[0].x <= p[1].x) &&
862        (p[0].y <= p[2].y) &&
863        (p[0].u == 0) &&
864        (p[0].v == 0) &&
865        (p[1].u == (int)(im->cache_entry.w << FP)) &&
866        (p[1].v == 0) &&
867        (p[2].u == (int)(im->cache_entry.w << FP)) &&
868        (p[2].v == (int)(im->cache_entry.h << FP)) &&
869        (p[3].u == 0) &&
870        (p[3].v == (int)(im->cache_entry.h << FP)) &&
871        (p[0].col == 0xffffffff) &&
872        (p[1].col == 0xffffffff) &&
873        (p[2].col == 0xffffffff) &&
874        (p[3].col == 0xffffffff))
875      {
876         int dx, dy, dw, dh;
877
878         dx = p[0].x >> FP;
879         dy = p[0].y >> FP;
880         dw = (p[2].x >> FP) - dx;
881         dh = (p[2].y >> FP) - dy;
882         eng_image_draw
883           (data, context, surface, image,
884            0, 0, im->cache_entry.w, im->cache_entry.h,
885            dx, dy, dw, dh, smooth);
886      }
887    else
888      {
889 #ifdef BUILD_PIPE_RENDER
890         if ((cpunum > 1))
891           evas_common_pipe_map_draw(im, surface, context, npoints, p, smooth, level);
892         else
893 #endif
894           evas_common_map_rgba(im, surface, context, npoints, p, smooth, level);
895      }
896    evas_common_cpu_end_opt();
897
898    if (npoints > 4)
899      {
900         eng_image_map_draw(data, context, surface, image, npoints - 2, p + 2,
901                            smooth, level);
902      }
903 }
904
905 static void *
906 eng_image_map_surface_new(void *data __UNUSED__, int w, int h, int alpha)
907 {
908    void *surface;
909    surface = evas_cache_image_copied_data(evas_common_image_cache_get(), 
910                                           w, h, NULL, alpha, 
911                                           EVAS_COLORSPACE_ARGB8888);
912    evas_cache_image_pixels(surface);
913    return surface;
914 }
915
916 static void
917 eng_image_map_surface_free(void *data __UNUSED__, void *surface)
918 {
919    evas_cache_image_drop(surface);
920 }
921
922 static void
923 eng_image_scale_hint_set(void *data __UNUSED__, void *image, int hint)
924 {
925    Image_Entry *im;
926
927    if (!image) return;
928    im = image;
929    im->scale_hint = hint;
930 }
931
932 static int
933 eng_image_scale_hint_get(void *data __UNUSED__, void *image)
934 {
935    Image_Entry *im;
936
937    if (!image) return EVAS_IMAGE_SCALE_HINT_NONE;
938    im = image;
939    return im->scale_hint;
940 }
941
942 static Eina_Bool
943 eng_image_animated_get(void *data __UNUSED__, void *image)
944 {
945    Image_Entry *im;
946
947    if (!image) return EINA_FALSE;
948    im = image;
949    return im->flags.animated;
950 }
951
952 static int
953 eng_image_animated_frame_count_get(void *data __UNUSED__, void *image)
954 {
955    Image_Entry *im;
956
957    if (!image) return -1;
958    im = image;
959    if (!im->flags.animated) return -1;
960    return im->frame_count;
961 }
962
963 static Evas_Image_Animated_Loop_Hint
964 eng_image_animated_loop_type_get(void *data __UNUSED__, void *image)
965 {
966    Image_Entry *im;
967
968    if (!image) return EVAS_IMAGE_ANIMATED_HINT_NONE;
969    im = image;
970    if (!im->flags.animated) return EVAS_IMAGE_ANIMATED_HINT_NONE;
971    return im->loop_hint;
972 }
973
974 static int
975 eng_image_animated_loop_count_get(void *data __UNUSED__, void *image)
976 {
977    Image_Entry *im;
978
979    if (!image) return -1;
980    im = image;
981    if (!im->flags.animated) return -1;
982    return im->loop_count;
983 }
984
985 static double
986 eng_image_animated_frame_duration_get(void *data __UNUSED__, void *image, int start_frame, int frame_num)
987 {
988    Image_Entry *im;
989
990    if (!image) return -1;
991    im = image;
992    if (!im->flags.animated) return -1;
993    return evas_common_load_rgba_image_frame_duration_from_file(im, start_frame, frame_num);
994 }
995
996 static Eina_Bool
997 eng_image_animated_frame_set(void *data __UNUSED__, void *image, int frame_index)
998 {
999    Image_Entry *im;
1000
1001    if (!image) return EINA_FALSE;
1002    im = image;
1003    if (!im->flags.animated) return EINA_FALSE;
1004    if (im->cur_frame == frame_index) return EINA_FALSE;
1005    im->cur_frame = frame_index;
1006    return EINA_TRUE;
1007 }
1008
1009 static void
1010 eng_image_cache_flush(void *data __UNUSED__)
1011 {
1012    int tmp_size;
1013
1014    tmp_size = evas_common_image_get_cache();
1015    evas_common_image_set_cache(0);
1016    evas_common_rgba_image_scalecache_flush();
1017    evas_common_image_set_cache(tmp_size);
1018 }
1019
1020 static void
1021 eng_image_cache_set(void *data __UNUSED__, int bytes)
1022 {
1023    evas_common_image_set_cache(bytes);
1024    evas_common_rgba_image_scalecache_size_set(bytes);
1025 }
1026
1027 static int
1028 eng_image_cache_get(void *data __UNUSED__)
1029 {
1030    return evas_common_image_get_cache();
1031 }
1032
1033 static Evas_Font_Set *
1034 eng_font_load(void *data __UNUSED__, const char *name, int size,
1035       Font_Rend_Flags wanted_rend)
1036 {
1037    return (Evas_Font_Set *) evas_common_font_load(name, size, wanted_rend);
1038 }
1039
1040 static Evas_Font_Set *
1041 eng_font_memory_load(void *data __UNUSED__, char *name, int size, const void *fdata, int fdata_size, Font_Rend_Flags wanted_rend)
1042 {
1043    return (Evas_Font_Set *) evas_common_font_memory_load(name, size, fdata,
1044          fdata_size, wanted_rend);
1045 }
1046
1047 static Evas_Font_Set *
1048 eng_font_add(void *data __UNUSED__, Evas_Font_Set *font, const char *name, int size, Font_Rend_Flags wanted_rend)
1049 {
1050    return (Evas_Font_Set *) evas_common_font_add((RGBA_Font *) font, name,
1051          size, wanted_rend);
1052 }
1053
1054 static Evas_Font_Set *
1055 eng_font_memory_add(void *data __UNUSED__, Evas_Font_Set *font, char *name, int size, const void *fdata, int fdata_size, Font_Rend_Flags wanted_rend)
1056 {
1057    return (Evas_Font_Set *) evas_common_font_memory_add((RGBA_Font *) font,
1058          name, size, fdata, fdata_size, wanted_rend);
1059 }
1060
1061 static void
1062 eng_font_free(void *data __UNUSED__, Evas_Font_Set *font)
1063 {
1064    evas_common_font_free((RGBA_Font *) font);
1065 }
1066
1067 static int
1068 eng_font_ascent_get(void *data __UNUSED__, Evas_Font_Set *font)
1069 {
1070    return evas_common_font_ascent_get((RGBA_Font *) font);
1071 }
1072
1073 static int
1074 eng_font_descent_get(void *data __UNUSED__, Evas_Font_Set *font)
1075 {
1076    return evas_common_font_descent_get((RGBA_Font *) font);
1077 }
1078
1079 static int
1080 eng_font_max_ascent_get(void *data __UNUSED__, Evas_Font_Set *font)
1081 {
1082    return evas_common_font_max_ascent_get((RGBA_Font *) font);
1083 }
1084
1085 static int
1086 eng_font_max_descent_get(void *data __UNUSED__, Evas_Font_Set *font)
1087 {
1088    return evas_common_font_max_descent_get((RGBA_Font *) font);
1089 }
1090
1091 static void
1092 eng_font_string_size_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props, int *w, int *h)
1093 {
1094    evas_common_font_query_size((RGBA_Font *) font, text_props, w, h);
1095 }
1096
1097 static int
1098 eng_font_inset_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props)
1099 {
1100    return evas_common_font_query_inset((RGBA_Font *) font, text_props);
1101 }
1102
1103 static int
1104 eng_font_right_inset_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props)
1105 {
1106    return evas_common_font_query_right_inset((RGBA_Font *) font, text_props);
1107 }
1108
1109 static int
1110 eng_font_h_advance_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props)
1111 {
1112    int h, v;
1113
1114    evas_common_font_query_advance((RGBA_Font *) font, text_props, &h, &v);
1115    return h;
1116 }
1117
1118 static int
1119 eng_font_v_advance_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props)
1120 {
1121    int h, v;
1122
1123    evas_common_font_query_advance((RGBA_Font *) font, text_props, &h, &v);
1124    return v;
1125 }
1126
1127 static int
1128 eng_font_pen_coords_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props, int pos, int *cpen_x, int *cy, int *cadv, int *ch)
1129 {
1130    return evas_common_font_query_pen_coords((RGBA_Font *) font, text_props, pos, cpen_x, cy, cadv, ch);
1131 }
1132
1133 static Eina_Bool
1134 eng_font_text_props_info_create(void *data __UNUSED__, Evas_Font_Instance *fi, const Eina_Unicode *text, Evas_Text_Props *text_props, const Evas_BiDi_Paragraph_Props *par_props, size_t par_pos, size_t len)
1135 {
1136    return evas_common_text_props_content_create((RGBA_Font_Int *) fi, text,
1137          text_props, par_props, par_pos, len);
1138 }
1139
1140 static int
1141 eng_font_char_coords_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props, int pos, int *cx, int *cy, int *cw, int *ch)
1142 {
1143    return evas_common_font_query_char_coords((RGBA_Font *) font, text_props, pos, cx, cy, cw, ch);
1144 }
1145
1146 static int
1147 eng_font_char_at_coords_get(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props, int x, int y, int *cx, int *cy, int *cw, int *ch)
1148 {
1149    return evas_common_font_query_char_at_coords((RGBA_Font *) font, text_props, x, y, cx, cy, cw, ch);
1150 }
1151
1152 static int
1153 eng_font_last_up_to_pos(void *data __UNUSED__, Evas_Font_Set *font, const Evas_Text_Props *text_props, int x, int y)
1154 {
1155    return evas_common_font_query_last_up_to_pos((RGBA_Font *) font, text_props, x, y);
1156 }
1157
1158 static int
1159 eng_font_run_font_end_get(void *data __UNUSED__, Evas_Font_Set *font, Evas_Font_Instance **script_fi, Evas_Font_Instance **cur_fi, Evas_Script_Type script, const Eina_Unicode *text, int run_len)
1160 {
1161    return evas_common_font_query_run_font_end_get((RGBA_Font *) font,
1162          (RGBA_Font_Int **) script_fi, (RGBA_Font_Int **) cur_fi,
1163          script, text, run_len);
1164 }
1165
1166 static void
1167 eng_font_draw(void *data __UNUSED__, void *context, void *surface, Evas_Font_Set *font, int x, int y, int w __UNUSED__, int h __UNUSED__, int ow __UNUSED__, int oh __UNUSED__, const Evas_Text_Props *text_props)
1168 {
1169 #ifdef BUILD_PIPE_RENDER
1170    if ((cpunum > 1))
1171      evas_common_pipe_text_draw(surface, context, x, y, text_props);
1172    else
1173 #endif   
1174      {
1175         evas_common_font_draw(surface, context, x, y, text_props);
1176         evas_common_cpu_end_opt();
1177      }
1178 }
1179
1180 static void
1181 eng_font_cache_flush(void *data __UNUSED__)
1182 {
1183    int tmp_size;
1184
1185    tmp_size = evas_common_font_cache_get();
1186    evas_common_font_cache_set(0);
1187    evas_common_font_flush();
1188    evas_common_font_cache_set(tmp_size);
1189 }
1190
1191 static void
1192 eng_font_cache_set(void *data __UNUSED__, int bytes)
1193 {
1194    evas_common_font_cache_set(bytes);
1195 }
1196
1197 static int
1198 eng_font_cache_get(void *data __UNUSED__)
1199 {
1200    return evas_common_font_cache_get();
1201 }
1202
1203 static void
1204 eng_font_hinting_set(void *data __UNUSED__, Evas_Font_Set *font, int hinting)
1205 {
1206    evas_common_font_hinting_set((RGBA_Font *) font, hinting);
1207 }
1208
1209 static int
1210 eng_font_hinting_can_hint(void *data __UNUSED__, int hinting)
1211 {
1212    return evas_common_hinting_available(hinting);
1213 }
1214
1215 static Eina_Bool
1216 eng_canvas_alpha_get(void *data __UNUSED__, void *info __UNUSED__)
1217 {
1218    return EINA_TRUE;
1219 }
1220
1221
1222 /* Filter API */
1223 #if 0 // filtering disabled
1224 static void
1225 eng_image_draw_filtered(void *data __UNUSED__, void *context __UNUSED__,
1226                         void *surface, void *image, Evas_Filter_Info *filter)
1227 {
1228    Evas_Software_Filter_Fn fn;
1229    RGBA_Image *im = image;
1230
1231    fn = evas_filter_software_get(filter);
1232    if (!fn) return;
1233    if (im->cache_entry.cache) evas_cache_image_load_data(&im->cache_entry);
1234    fn(filter, image, surface);
1235    return;
1236 }
1237
1238 static Filtered_Image *
1239 eng_image_filtered_get(void *image, uint8_t *key, size_t keylen)
1240 {
1241    RGBA_Image *im = image;
1242    Filtered_Image *fi;
1243    Eina_List *l;
1244
1245    for (l = im->filtered ; l ; l = l->next)
1246      {
1247          fi = l->data;
1248          if (fi->keylen != keylen) continue;
1249          if (memcmp(key, fi->key, keylen) != 0) continue;
1250          fi->ref ++;
1251          return fi;
1252      }
1253
1254    return NULL;
1255 }
1256
1257 static Filtered_Image *
1258 eng_image_filtered_save(void *image, void *fimage, uint8_t *key, size_t keylen)
1259 {
1260    RGBA_Image *im = image;
1261    Filtered_Image *fi;
1262    Eina_List *l;
1263
1264    for (l = im->filtered ; l ; l = l->next)
1265      {
1266         fi = l->data;
1267         if (fi->keylen != keylen) continue;
1268         if (memcmp(key, fi->key, keylen) == 0) continue;
1269         evas_cache_image_drop((void *)fi->image);
1270         fi->image = fimage;
1271         return fi;
1272      }
1273
1274    fi = calloc(1,sizeof(Filtered_Image));
1275    if (!fi) return NULL;
1276
1277    fi->keylen = keylen;
1278    fi->key = malloc(keylen);
1279    memcpy(fi->key, key, keylen);
1280    fi->image = fimage;
1281    fi->ref = 1;
1282
1283    im->filtered = eina_list_prepend(im->filtered, fi);
1284
1285    return fi;
1286 }
1287
1288 static void
1289 eng_image_filtered_free(void *image, Filtered_Image *fi)
1290 {
1291    RGBA_Image *im = image;
1292
1293    fi->ref --;
1294    if (fi->ref) return;
1295
1296    free(fi->key);
1297    evas_cache_image_drop(&fi->image->cache_entry);
1298    fi->image = NULL;
1299
1300    im->filtered = eina_list_remove(im->filtered, fi);
1301 }
1302 #endif
1303
1304 static int
1305 eng_image_load_error_get(void *data __UNUSED__, void *image)
1306 {
1307    RGBA_Image *im;
1308    
1309    if (!image) return EVAS_LOAD_ERROR_NONE;
1310    im = image;
1311    return im->cache_entry.load_error;
1312 }
1313
1314 //------------ Evas GL engine code ---------------//
1315 static void *
1316 eng_gl_surface_create(void *data __UNUSED__, void *config, int w, int h)
1317 {
1318 #ifdef EVAS_GL
1319    Render_Engine_GL_Surface *sfc;
1320    Evas_GL_Config *cfg;
1321
1322    sfc = calloc(1, sizeof(Render_Engine_GL_Surface));
1323    if (!sfc) return NULL;
1324
1325    cfg = (Evas_GL_Config *)config;
1326
1327    sfc->initialized  = 0;
1328    sfc->w            = w;
1329    sfc->h            = h;
1330
1331    // Color Format
1332    switch (cfg->color_format)
1333      {
1334
1335       case EVAS_GL_RGB_888:
1336          sfc->internal_fmt = OSMESA_RGB;
1337          sfc->internal_cpp = 3;
1338          break;
1339       case EVAS_GL_RGBA_8888:
1340          sfc->internal_fmt = OSMESA_BGRA;
1341          sfc->internal_cpp = 4;
1342          break;
1343       default:
1344          sfc->internal_fmt = OSMESA_RGBA;
1345          sfc->internal_cpp = 4;
1346          break;
1347      }
1348
1349    // Depth Bits
1350    switch (cfg->depth_bits)
1351      {
1352       case EVAS_GL_DEPTH_BIT_8:
1353          sfc->depth_bits = 8;
1354          break;
1355       case EVAS_GL_DEPTH_BIT_16:
1356          sfc->depth_bits = 16;
1357          break;
1358       case EVAS_GL_DEPTH_BIT_24:
1359          sfc->depth_bits = 24;
1360          break;
1361       case EVAS_GL_DEPTH_BIT_32:
1362          sfc->depth_bits = 32;
1363          break;
1364       case EVAS_GL_DEPTH_NONE:
1365       default:
1366          sfc->depth_bits = 0;
1367          break;
1368      }
1369    
1370    // Stencil Bits
1371    switch (cfg->stencil_bits)
1372      {
1373       case EVAS_GL_STENCIL_BIT_1:
1374          sfc->stencil_bits = 1;
1375          break;
1376       case EVAS_GL_STENCIL_BIT_2:
1377          sfc->stencil_bits = 2;
1378          break;
1379       case EVAS_GL_STENCIL_BIT_4:
1380          sfc->stencil_bits = 4;
1381          break;
1382       case EVAS_GL_STENCIL_BIT_8:
1383          sfc->stencil_bits = 8;
1384          break;
1385       case EVAS_GL_STENCIL_BIT_16:
1386          sfc->stencil_bits = 16;
1387          break;
1388       case EVAS_GL_STENCIL_NONE:
1389       default:
1390          sfc->stencil_bits = 0;
1391          break;
1392      }
1393
1394    sfc->buffer = malloc(sizeof(unsigned char)*sfc->internal_cpp*w*h);
1395
1396    if (!sfc->buffer)
1397      {
1398         free(sfc);
1399         return NULL;
1400      }
1401
1402    return sfc;
1403 #else
1404    (void) config;
1405    (void) w;
1406    (void) h;
1407    return NULL;
1408 #endif
1409 }
1410
1411 static int
1412 eng_gl_surface_destroy(void *data __UNUSED__, void *surface)
1413 {
1414 #ifdef EVAS_GL
1415    Render_Engine_GL_Surface *sfc;
1416
1417    sfc = (Render_Engine_GL_Surface*)surface;
1418
1419    if (!sfc) return 0;
1420
1421    if (sfc->buffer) free(sfc->buffer);
1422
1423    free(sfc);
1424
1425    surface = NULL;
1426
1427    return 1;
1428 #else
1429    (void) surface;
1430    return 1;
1431 #endif
1432 }
1433
1434 static void *
1435 eng_gl_context_create(void *data __UNUSED__, void *share_context)
1436 {
1437 #ifdef EVAS_GL
1438    Render_Engine_GL_Context *ctx;
1439    Render_Engine_GL_Context *share_ctx;
1440
1441    ctx = calloc(1, sizeof(Render_Engine_GL_Context));
1442
1443    if (!ctx) return NULL;
1444
1445    share_ctx = (Render_Engine_GL_Context *)share_context;
1446
1447    ctx->share_ctx = share_ctx;
1448
1449    /*
1450    if (share_ctx)
1451       ctx->context = OSMesaCreateContextExt( OSMESA_RGBA, 8, 0, 0, share_ctx->context );
1452    else
1453       ctx->context = OSMesaCreateContextExt( OSMESA_RGBA, 8, 0, 0, NULL );
1454
1455
1456    if (!ctx->context)
1457      {
1458         ERR("Error creating OSMesa Context.");
1459         free(ctx);
1460         return NULL;
1461      }
1462      */
1463
1464    ctx->initialized = 0;
1465
1466    return ctx;
1467 #else
1468    (void) share_context;
1469    return NULL;
1470 #endif
1471 }
1472
1473 static int
1474 eng_gl_context_destroy(void *data __UNUSED__, void *context)
1475 {
1476 #ifdef EVAS_GL
1477    Render_Engine_GL_Context *ctx;
1478
1479    ctx = (Render_Engine_GL_Context*)context;
1480
1481    if (!ctx) return 0;
1482
1483    _sym_OSMesaDestroyContext(ctx->context);
1484
1485    free(ctx);
1486    context = NULL;
1487
1488    return 1;
1489 #else
1490    (void) context;
1491    return 0;
1492 #endif
1493 }
1494
1495 static int
1496 eng_gl_make_current(void *data __UNUSED__, void *surface, void *context)
1497 {
1498 #ifdef EVAS_GL
1499    Render_Engine_GL_Surface *sfc;
1500    Render_Engine_GL_Context *ctx;
1501    OSMesaContext share_ctx;
1502    GLboolean ret;
1503
1504    sfc = (Render_Engine_GL_Surface*)surface;
1505    ctx = (Render_Engine_GL_Context*)context;
1506
1507    // Unset surface/context
1508    if ((!sfc) || (!ctx))
1509      {
1510         if (ctx) ctx->current_sfc = NULL;
1511         if (sfc) sfc->current_ctx = NULL;
1512         return 1;
1513      }
1514
1515    // Initialize Context if it hasn't been.
1516    if (!ctx->initialized)
1517      {
1518         if (ctx->share_ctx)
1519            share_ctx = ctx->share_ctx->context;
1520         else
1521            share_ctx = NULL;
1522
1523         ctx->context =  _sym_OSMesaCreateContextExt(sfc->internal_fmt, 
1524                                                sfc->depth_bits,
1525                                                sfc->stencil_bits, 
1526                                                0,
1527                                                share_ctx);
1528         if (!ctx->context)
1529           {
1530              ERR("Error initializing context.");
1531              return 0;
1532           }
1533
1534         ctx->initialized = 1;
1535      }
1536
1537
1538    // Call MakeCurrent
1539    ret = _sym_OSMesaMakeCurrent(ctx->context, sfc->buffer, GL_UNSIGNED_BYTE, 
1540                            sfc->w, sfc->h);
1541
1542    if (ret == GL_FALSE)
1543      {
1544         ERR("Error doing MakeCurrent.");
1545         return 0;
1546      }
1547
1548    _sym_OSMesaPixelStore(OSMESA_Y_UP, 0);
1549
1550    // Set the current surface/context
1551    ctx->current_sfc = sfc;
1552    sfc->current_ctx = ctx;
1553
1554    return 1;
1555 #else
1556    (void) surface;
1557    (void) context;
1558    return 1;
1559 #endif
1560 }
1561
1562 // FIXME!!! Implement later
1563 static void *
1564 eng_gl_string_query(void *data __UNUSED__, int name __UNUSED__)
1565 {
1566    return NULL;
1567 }
1568
1569 static void *
1570 eng_gl_proc_address_get(void *data __UNUSED__, const char *name)
1571 {
1572 #ifdef EVAS_GL
1573    if (_sym_OSMesaGetProcAddress) return _sym_OSMesaGetProcAddress(name);
1574    return dlsym(RTLD_DEFAULT, name);
1575 #else
1576    (void) name;
1577    return NULL;
1578 #endif
1579 }
1580
1581 static int
1582 eng_gl_native_surface_get(void *data __UNUSED__, void *surface, void *native_surface)
1583 {
1584 #ifdef EVAS_GL
1585    Render_Engine_GL_Surface *sfc;
1586    Evas_Native_Surface *ns;
1587
1588    sfc = (Render_Engine_GL_Surface*)surface;
1589    ns  = (Evas_Native_Surface*)native_surface;
1590
1591    if (!sfc) return 0;
1592
1593    ns->type = EVAS_NATIVE_SURFACE_OPENGL;
1594    ns->version = EVAS_NATIVE_SURFACE_VERSION;
1595    ns->data.x11.visual = sfc->buffer;
1596
1597    return 1;
1598 #else
1599    (void) surface;
1600    (void) native_surface;
1601    return 1;
1602 #endif
1603 }
1604
1605
1606 static void *
1607 eng_gl_api_get(void *data __UNUSED__)
1608 {
1609 #ifdef EVAS_GL
1610    return &gl_funcs;
1611 #else
1612    return NULL;
1613 #endif
1614 }
1615
1616 //------------------------------------------------//
1617
1618
1619 /*
1620  *****
1621  **
1622  ** ENGINE API
1623  **
1624  *****
1625  */
1626
1627 static Evas_Func func =
1628 {
1629    NULL,
1630      NULL,
1631      NULL,
1632      NULL,
1633      NULL,
1634      NULL,
1635      NULL,
1636      NULL,
1637      NULL,
1638      NULL,
1639      NULL,
1640      NULL,
1641      NULL,
1642      eng_output_dump,
1643      /* draw context virtual methods */
1644      eng_context_new,
1645      eng_canvas_alpha_get,
1646      eng_context_free,
1647      eng_context_clip_set,
1648      eng_context_clip_clip,
1649      eng_context_clip_unset,
1650      eng_context_clip_get,
1651      eng_context_mask_set,
1652      eng_context_mask_unset,
1653      eng_context_color_set,
1654      eng_context_color_get,
1655      eng_context_multiplier_set,
1656      eng_context_multiplier_unset,
1657      eng_context_multiplier_get,
1658      eng_context_cutout_add,
1659      eng_context_cutout_clear,
1660      eng_context_anti_alias_set,
1661      eng_context_anti_alias_get,
1662      eng_context_color_interpolation_set,
1663      eng_context_color_interpolation_get,
1664      eng_context_render_op_set,
1665      eng_context_render_op_get,
1666      /* rect draw funcs */
1667      eng_rectangle_draw,
1668      /* line draw funcs */
1669      eng_line_draw,
1670      /* polygon draw funcs */
1671      eng_polygon_point_add,
1672      eng_polygon_points_clear,
1673      eng_polygon_draw,
1674      /* image draw funcs */
1675      eng_image_load,
1676      eng_image_new_from_data,
1677      eng_image_new_from_copied_data,
1678      eng_image_free,
1679      eng_image_size_get,
1680      eng_image_size_set,
1681      NULL,
1682      eng_image_dirty_region,
1683      eng_image_data_get,
1684      eng_image_data_put,
1685      eng_image_data_preload_request,
1686      eng_image_data_preload_cancel,
1687      eng_image_alpha_set,
1688      eng_image_alpha_get,
1689      eng_image_border_set,
1690      eng_image_border_get,
1691      eng_image_draw,
1692      eng_image_comment_get,
1693      eng_image_format_get,
1694      eng_image_colorspace_set,
1695      eng_image_colorspace_get,
1696      eng_image_can_region_get,
1697      eng_image_mask_create,
1698      eng_image_native_set,
1699      eng_image_native_get,
1700      /* image cache funcs */
1701      eng_image_cache_flush,
1702      eng_image_cache_set,
1703      eng_image_cache_get,
1704      /* font draw functions */
1705      eng_font_load,
1706      eng_font_memory_load,
1707      eng_font_add,
1708      eng_font_memory_add,
1709      eng_font_free,
1710      eng_font_ascent_get,
1711      eng_font_descent_get,
1712      eng_font_max_ascent_get,
1713      eng_font_max_descent_get,
1714      eng_font_string_size_get,
1715      eng_font_inset_get,
1716      eng_font_h_advance_get,
1717      eng_font_v_advance_get,
1718      eng_font_char_coords_get,
1719      eng_font_char_at_coords_get,
1720      eng_font_draw,
1721      /* font cache functions */
1722      eng_font_cache_flush,
1723      eng_font_cache_set,
1724      eng_font_cache_get,
1725      /* font hinting functions */
1726      eng_font_hinting_set,
1727      eng_font_hinting_can_hint,
1728      eng_image_scale_hint_set,
1729      eng_image_scale_hint_get,
1730      /* more font draw functions */
1731      eng_font_last_up_to_pos,
1732      eng_image_map_draw,
1733      eng_image_map_surface_new,
1734      eng_image_map_surface_free,
1735      NULL, // eng_image_content_hint_set - software doesn't use it
1736      NULL, // eng_image_content_hint_get - software doesn't use it
1737      eng_font_pen_coords_get,
1738      eng_font_text_props_info_create,
1739      eng_font_right_inset_get,
1740 #if 0 // filtering disabled
1741      eng_image_draw_filtered,
1742      eng_image_filtered_get,
1743      eng_image_filtered_save,
1744      eng_image_filtered_free,
1745 #endif   
1746      NULL, // need software mesa for gl rendering <- gl_surface_create
1747      NULL, // need software mesa for gl rendering <- gl_surface_destroy
1748      NULL, // need software mesa for gl rendering <- gl_context_create
1749      NULL, // need software mesa for gl rendering <- gl_context_destroy
1750      NULL, // need software mesa for gl rendering <- gl_make_current
1751      NULL, // need software mesa for gl rendering <- gl_string_query
1752      NULL, // need software mesa for gl rendering <- gl_proc_address_get
1753      NULL, // need software mesa for gl rendering <- gl_native_surface_get
1754      NULL, // need software mesa for gl rendering <- gl_api_get
1755      NULL, // need software mesa for gl rendering <- gl_img_obj_set
1756      eng_image_load_error_get,
1757      eng_font_run_font_end_get,
1758      eng_image_animated_get,
1759      eng_image_animated_frame_count_get,
1760      eng_image_animated_loop_type_get,
1761      eng_image_animated_loop_count_get,
1762      eng_image_animated_frame_duration_get,
1763      eng_image_animated_frame_set,
1764      NULL
1765    /* FUTURE software generic calls go here */
1766 };
1767
1768
1769 //----------------------------------------------------------------//
1770 //                                                                //
1771 //                      Load Symbols                              //
1772 //                                                                //
1773 //----------------------------------------------------------------//
1774 #ifdef EVAS_GL
1775 static void
1776 sym_missing(void)
1777 {
1778    ERR("GL symbols missing!\n");
1779 }
1780
1781 static int
1782 glue_sym_init(void)
1783 {
1784    //------------------------------------------------//
1785    // Use eglGetProcAddress
1786 #define FINDSYM(dst, sym, typ) \
1787    if (!dst) dst = (typeof(dst))dlsym(gl_lib_handle, sym); \
1788    if (!dst)  \
1789      { \
1790         ERR("Symbol not found %s\n", sym); \
1791         return 0; \
1792      }
1793 #define FALLBAK(dst, typ) if (!dst) dst = (typeof(dst))sym_missing;
1794
1795     //------------------------------------------------------//
1796    // OSMesa APIs...
1797    FINDSYM(_sym_OSMesaCreateContextExt, "OSMesaCreateContextExt", glsym_func_osm_ctx);
1798    FALLBAK(_sym_OSMesaCreateContextExt, glsym_func_void);
1799
1800    FINDSYM(_sym_OSMesaDestroyContext, "OSMesaDestroyContext", glsym_func_void);
1801    FALLBAK(_sym_OSMesaDestroyContext, glsym_func_void);
1802
1803    FINDSYM(_sym_OSMesaMakeCurrent, "OSMesaMakeCurrent", glsym_func_bool);
1804    FALLBAK(_sym_OSMesaMakeCurrent, glsym_func_void);
1805
1806    FINDSYM(_sym_OSMesaPixelStore, "OSMesaPixelStore", glsym_func_void);
1807    FALLBAK(_sym_OSMesaPixelStore, glsym_func_void);
1808
1809    FINDSYM(_sym_OSMesaGetProcAddress, "OSMesaGetProcAddress", glsym_func_eng_fn);
1810    FALLBAK(_sym_OSMesaGetProcAddress, glsym_func_void);
1811
1812 #undef FINDSYM
1813 #undef FALLBAK
1814
1815    return 1;
1816 }
1817
1818 static int
1819 gl_sym_init(void)
1820 {
1821    //------------------------------------------------//
1822 #define FINDSYM(dst, sym, typ) \
1823    if (!dst) dst = (typeof(dst))dlsym(gl_lib_handle, sym); \
1824    if (!dst) DBG("Symbol not found %s\n", sym);
1825 #define FALLBAK(dst, typ) if (!dst) dst = (typeof(dst))sym_missing;
1826
1827
1828    //------------------------------------------------------//
1829    // GLES 2.0 APIs...
1830    FINDSYM(_sym_glActiveTexture, "glActiveTexture", glsym_func_void);
1831    FALLBAK(_sym_glActiveTexture, glsym_func_void);
1832
1833    FINDSYM(_sym_glAttachShader, "glAttachShader", glsym_func_void);
1834    FALLBAK(_sym_glAttachShader, glsym_func_void);
1835
1836    FINDSYM(_sym_glBindAttribLocation, "glBindAttribLocation", glsym_func_void);
1837    FALLBAK(_sym_glBindAttribLocation, glsym_func_void);
1838
1839    FINDSYM(_sym_glBindBuffer, "glBindBuffer", glsym_func_void);
1840    FALLBAK(_sym_glBindBuffer, glsym_func_void);
1841
1842    FINDSYM(_sym_glBindFramebuffer, "glBindFramebuffer", glsym_func_void);
1843    FALLBAK(_sym_glBindFramebuffer, glsym_func_void);
1844
1845    FINDSYM(_sym_glBindRenderbuffer, "glBindRenderbuffer", glsym_func_void);
1846    FALLBAK(_sym_glBindRenderbuffer, glsym_func_void);
1847
1848    FINDSYM(_sym_glBindTexture, "glBindTexture", glsym_func_void);
1849    FALLBAK(_sym_glBindTexture, glsym_func_void);
1850
1851    FINDSYM(_sym_glBlendColor, "glBlendColor", glsym_func_void);
1852    FALLBAK(_sym_glBlendColor, glsym_func_void);
1853
1854    FINDSYM(_sym_glBlendEquation, "glBlendEquation", glsym_func_void);
1855    FALLBAK(_sym_glBlendEquation, glsym_func_void);
1856
1857    FINDSYM(_sym_glBlendEquationSeparate, "glBlendEquationSeparate", glsym_func_void);
1858    FALLBAK(_sym_glBlendEquationSeparate, glsym_func_void);
1859
1860    FINDSYM(_sym_glBlendFunc, "glBlendFunc", glsym_func_void);
1861    FALLBAK(_sym_glBlendFunc, glsym_func_void);
1862
1863    FINDSYM(_sym_glBlendFuncSeparate, "glBlendFuncSeparate", glsym_func_void);
1864    FALLBAK(_sym_glBlendFuncSeparate, glsym_func_void);
1865
1866    FINDSYM(_sym_glBufferData, "glBufferData", glsym_func_void);
1867    FALLBAK(_sym_glBufferData, glsym_func_void);
1868
1869    FINDSYM(_sym_glBufferSubData, "glBufferSubData", glsym_func_void);
1870    FALLBAK(_sym_glBufferSubData, glsym_func_void);
1871
1872    FINDSYM(_sym_glCheckFramebufferStatus, "glCheckFramebufferStatus", glsym_func_uint);
1873    FALLBAK(_sym_glCheckFramebufferStatus, glsym_func_uint);
1874
1875    FINDSYM(_sym_glClear, "glClear", glsym_func_void);
1876    FALLBAK(_sym_glClear, glsym_func_void);
1877
1878    FINDSYM(_sym_glClearColor, "glClearColor", glsym_func_void);
1879    FALLBAK(_sym_glClearColor, glsym_func_void);
1880
1881    FINDSYM(_sym_glClearDepthf, "glClearDepthf", glsym_func_void);
1882    FINDSYM(_sym_glClearDepthf, "glClearDepth", glsym_func_void);
1883    FALLBAK(_sym_glClearDepthf, glsym_func_void);
1884
1885    FINDSYM(_sym_glClearStencil, "glClearStencil", glsym_func_void);
1886    FALLBAK(_sym_glClearStencil, glsym_func_void);
1887
1888    FINDSYM(_sym_glColorMask, "glColorMask", glsym_func_void);
1889    FALLBAK(_sym_glColorMask, glsym_func_void);
1890
1891    FINDSYM(_sym_glCompileShader, "glCompileShader", glsym_func_void);
1892    FALLBAK(_sym_glCompileShader, glsym_func_void);
1893
1894    FINDSYM(_sym_glCompressedTexImage2D, "glCompressedTexImage2D", glsym_func_void);
1895    FALLBAK(_sym_glCompressedTexImage2D, glsym_func_void);
1896
1897    FINDSYM(_sym_glCompressedTexSubImage2D, "glCompressedTexSubImage2D", glsym_func_void);
1898    FALLBAK(_sym_glCompressedTexSubImage2D, glsym_func_void);
1899
1900    FINDSYM(_sym_glCopyTexImage2D, "glCopyTexImage2D", glsym_func_void);
1901    FALLBAK(_sym_glCopyTexImage2D, glsym_func_void);
1902
1903    FINDSYM(_sym_glCopyTexSubImage2D, "glCopyTexSubImage2D", glsym_func_void);
1904    FALLBAK(_sym_glCopyTexSubImage2D, glsym_func_void);
1905
1906    FINDSYM(_sym_glCreateProgram, "glCreateProgram", glsym_func_uint);
1907    FALLBAK(_sym_glCreateProgram, glsym_func_uint);
1908
1909    FINDSYM(_sym_glCreateShader, "glCreateShader", glsym_func_uint);
1910    FALLBAK(_sym_glCreateShader, glsym_func_uint);
1911
1912    FINDSYM(_sym_glCullFace, "glCullFace", glsym_func_void);
1913    FALLBAK(_sym_glCullFace, glsym_func_void);
1914
1915    FINDSYM(_sym_glDeleteBuffers, "glDeleteBuffers", glsym_func_void);
1916    FALLBAK(_sym_glDeleteBuffers, glsym_func_void);
1917
1918    FINDSYM(_sym_glDeleteFramebuffers, "glDeleteFramebuffers", glsym_func_void);
1919    FALLBAK(_sym_glDeleteFramebuffers, glsym_func_void);
1920
1921    FINDSYM(_sym_glDeleteProgram, "glDeleteProgram", glsym_func_void);
1922    FALLBAK(_sym_glDeleteProgram, glsym_func_void);
1923
1924    FINDSYM(_sym_glDeleteRenderbuffers, "glDeleteRenderbuffers", glsym_func_void);
1925    FALLBAK(_sym_glDeleteRenderbuffers, glsym_func_void);
1926
1927    FINDSYM(_sym_glDeleteShader, "glDeleteShader", glsym_func_void);
1928    FALLBAK(_sym_glDeleteShader, glsym_func_void);
1929
1930    FINDSYM(_sym_glDeleteTextures, "glDeleteTextures", glsym_func_void);
1931    FALLBAK(_sym_glDeleteTextures, glsym_func_void);
1932
1933    FINDSYM(_sym_glDepthFunc, "glDepthFunc", glsym_func_void);
1934    FALLBAK(_sym_glDepthFunc, glsym_func_void);
1935
1936    FINDSYM(_sym_glDepthMask, "glDepthMask", glsym_func_void);
1937    FALLBAK(_sym_glDepthMask, glsym_func_void);
1938
1939    FINDSYM(_sym_glDepthRangef, "glDepthRangef", glsym_func_void);
1940    FINDSYM(_sym_glDepthRangef, "glDepthRange", glsym_func_void);
1941    FALLBAK(_sym_glDepthRangef, glsym_func_void);
1942
1943    FINDSYM(_sym_glDetachShader, "glDetachShader", glsym_func_void);
1944    FALLBAK(_sym_glDetachShader, glsym_func_void);
1945
1946    FINDSYM(_sym_glDisable, "glDisable", glsym_func_void);
1947    FALLBAK(_sym_glDisable, glsym_func_void);
1948
1949    FINDSYM(_sym_glDisableVertexAttribArray, "glDisableVertexAttribArray", glsym_func_void);
1950    FALLBAK(_sym_glDisableVertexAttribArray, glsym_func_void);
1951
1952    FINDSYM(_sym_glDrawArrays, "glDrawArrays", glsym_func_void);
1953    FALLBAK(_sym_glDrawArrays, glsym_func_void);
1954
1955    FINDSYM(_sym_glDrawElements, "glDrawElements", glsym_func_void);
1956    FALLBAK(_sym_glDrawElements, glsym_func_void);
1957
1958    FINDSYM(_sym_glEnable, "glEnable", glsym_func_void);
1959    FALLBAK(_sym_glEnable, glsym_func_void);
1960
1961    FINDSYM(_sym_glEnableVertexAttribArray, "glEnableVertexAttribArray", glsym_func_void);
1962    FALLBAK(_sym_glEnableVertexAttribArray, glsym_func_void);
1963
1964    FINDSYM(_sym_glFinish, "glFinish", glsym_func_void);
1965    FALLBAK(_sym_glFinish, glsym_func_void);
1966
1967    FINDSYM(_sym_glFlush, "glFlush", glsym_func_void);
1968    FALLBAK(_sym_glFlush, glsym_func_void);
1969
1970    FINDSYM(_sym_glFramebufferRenderbuffer, "glFramebufferRenderbuffer", glsym_func_void);
1971    FALLBAK(_sym_glFramebufferRenderbuffer, glsym_func_void);
1972
1973    FINDSYM(_sym_glFramebufferTexture2D, "glFramebufferTexture2D", glsym_func_void);
1974    FALLBAK(_sym_glFramebufferTexture2D, glsym_func_void);
1975
1976    FINDSYM(_sym_glFrontFace, "glFrontFace", glsym_func_void);
1977    FALLBAK(_sym_glFrontFace, glsym_func_void);
1978
1979    FINDSYM(_sym_glGenBuffers, "glGenBuffers", glsym_func_void);
1980    FALLBAK(_sym_glGenBuffers, glsym_func_void);
1981
1982    FINDSYM(_sym_glGenerateMipmap, "glGenerateMipmap", glsym_func_void);
1983    FALLBAK(_sym_glGenerateMipmap, glsym_func_void);
1984
1985    FINDSYM(_sym_glGenFramebuffers, "glGenFramebuffers", glsym_func_void);
1986    FALLBAK(_sym_glGenFramebuffers, glsym_func_void);
1987
1988    FINDSYM(_sym_glGenRenderbuffers, "glGenRenderbuffers", glsym_func_void);
1989    FALLBAK(_sym_glGenRenderbuffers, glsym_func_void);
1990
1991    FINDSYM(_sym_glGenTextures, "glGenTextures", glsym_func_void);
1992    FALLBAK(_sym_glGenTextures, glsym_func_void);
1993
1994    FINDSYM(_sym_glGetActiveAttrib, "glGetActiveAttrib", glsym_func_void);
1995    FALLBAK(_sym_glGetActiveAttrib, glsym_func_void);
1996
1997    FINDSYM(_sym_glGetActiveUniform, "glGetActiveUniform", glsym_func_void);
1998    FALLBAK(_sym_glGetActiveUniform, glsym_func_void);
1999
2000    FINDSYM(_sym_glGetAttachedShaders, "glGetAttachedShaders", glsym_func_void);
2001    FALLBAK(_sym_glGetAttachedShaders, glsym_func_void);
2002
2003    FINDSYM(_sym_glGetAttribLocation, "glGetAttribLocation", glsym_func_int);
2004    FALLBAK(_sym_glGetAttribLocation, glsym_func_int);
2005
2006    FINDSYM(_sym_glGetBooleanv, "glGetBooleanv", glsym_func_void);
2007    FALLBAK(_sym_glGetBooleanv, glsym_func_void);
2008
2009    FINDSYM(_sym_glGetBufferParameteriv, "glGetBufferParameteriv", glsym_func_void);
2010    FALLBAK(_sym_glGetBufferParameteriv, glsym_func_void);
2011
2012    FINDSYM(_sym_glGetError, "glGetError", glsym_func_uint);
2013    FALLBAK(_sym_glGetError, glsym_func_uint);
2014
2015    FINDSYM(_sym_glGetFloatv, "glGetFloatv", glsym_func_void);
2016    FALLBAK(_sym_glGetFloatv, glsym_func_void);
2017
2018    FINDSYM(_sym_glGetFramebufferAttachmentParameteriv, "glGetFramebufferAttachmentParameteriv", glsym_func_void);
2019    FALLBAK(_sym_glGetFramebufferAttachmentParameteriv, glsym_func_void);
2020
2021    FINDSYM(_sym_glGetIntegerv, "glGetIntegerv", glsym_func_void);
2022    FALLBAK(_sym_glGetIntegerv, glsym_func_void);
2023
2024    FINDSYM(_sym_glGetProgramiv, "glGetProgramiv", glsym_func_void);
2025    FALLBAK(_sym_glGetProgramiv, glsym_func_void);
2026
2027    FINDSYM(_sym_glGetProgramInfoLog, "glGetProgramInfoLog", glsym_func_void);
2028    FALLBAK(_sym_glGetProgramInfoLog, glsym_func_void);
2029
2030    FINDSYM(_sym_glGetRenderbufferParameteriv, "glGetRenderbufferParameteriv", glsym_func_void);
2031    FALLBAK(_sym_glGetRenderbufferParameteriv, glsym_func_void);
2032
2033    FINDSYM(_sym_glGetShaderiv, "glGetShaderiv", glsym_func_void);
2034    FALLBAK(_sym_glGetShaderiv, glsym_func_void);
2035
2036    FINDSYM(_sym_glGetShaderInfoLog, "glGetShaderInfoLog", glsym_func_void);
2037    FALLBAK(_sym_glGetShaderInfoLog, glsym_func_void);
2038
2039    FINDSYM(_sym_glGetShaderPrecisionFormat, "glGetShaderPrecisionFormat", glsym_func_void);
2040    FALLBAK(_sym_glGetShaderPrecisionFormat, glsym_func_void);
2041
2042    FINDSYM(_sym_glGetShaderSource, "glGetShaderSource", glsym_func_void);
2043    FALLBAK(_sym_glGetShaderSource, glsym_func_void);
2044
2045    FINDSYM(_sym_glGetString, "glGetString", glsym_func_uchar_ptr);
2046    FALLBAK(_sym_glGetString, glsym_func_const_uchar_ptr);
2047
2048    FINDSYM(_sym_glGetTexParameterfv, "glGetTexParameterfv", glsym_func_void);
2049    FALLBAK(_sym_glGetTexParameterfv, glsym_func_void);
2050
2051    FINDSYM(_sym_glGetTexParameteriv, "glGetTexParameteriv", glsym_func_void);
2052    FALLBAK(_sym_glGetTexParameteriv, glsym_func_void);
2053
2054    FINDSYM(_sym_glGetUniformfv, "glGetUniformfv", glsym_func_void);
2055    FALLBAK(_sym_glGetUniformfv, glsym_func_void);
2056
2057    FINDSYM(_sym_glGetUniformiv, "glGetUniformiv", glsym_func_void);
2058    FALLBAK(_sym_glGetUniformiv, glsym_func_void);
2059
2060    FINDSYM(_sym_glGetUniformLocation, "glGetUniformLocation", glsym_func_int);
2061    FALLBAK(_sym_glGetUniformLocation, glsym_func_int);
2062
2063    FINDSYM(_sym_glGetVertexAttribfv, "glGetVertexAttribfv", glsym_func_void);
2064    FALLBAK(_sym_glGetVertexAttribfv, glsym_func_void);
2065
2066    FINDSYM(_sym_glGetVertexAttribiv, "glGetVertexAttribiv", glsym_func_void);
2067    FALLBAK(_sym_glGetVertexAttribiv, glsym_func_void);
2068
2069    FINDSYM(_sym_glGetVertexAttribPointerv, "glGetVertexAttribPointerv", glsym_func_void);
2070    FALLBAK(_sym_glGetVertexAttribPointerv, glsym_func_void);
2071
2072    FINDSYM(_sym_glHint, "glHint", glsym_func_void);
2073    FALLBAK(_sym_glHint, glsym_func_void);
2074
2075    FINDSYM(_sym_glIsBuffer, "glIsBuffer", glsym_func_uchar);
2076    FALLBAK(_sym_glIsBuffer, glsym_func_uchar);
2077
2078    FINDSYM(_sym_glIsEnabled, "glIsEnabled", glsym_func_uchar);
2079    FALLBAK(_sym_glIsEnabled, glsym_func_uchar);
2080
2081    FINDSYM(_sym_glIsFramebuffer, "glIsFramebuffer", glsym_func_uchar);
2082    FALLBAK(_sym_glIsFramebuffer, glsym_func_uchar);
2083
2084    FINDSYM(_sym_glIsProgram, "glIsProgram", glsym_func_uchar);
2085    FALLBAK(_sym_glIsProgram, glsym_func_uchar);
2086
2087    FINDSYM(_sym_glIsRenderbuffer, "glIsRenderbuffer", glsym_func_uchar);
2088    FALLBAK(_sym_glIsRenderbuffer, glsym_func_uchar);
2089
2090    FINDSYM(_sym_glIsShader, "glIsShader", glsym_func_uchar);
2091    FALLBAK(_sym_glIsShader, glsym_func_uchar);
2092
2093    FINDSYM(_sym_glIsTexture, "glIsTexture", glsym_func_uchar);
2094    FALLBAK(_sym_glIsTexture, glsym_func_uchar);
2095
2096    FINDSYM(_sym_glLineWidth, "glLineWidth", glsym_func_void);
2097    FALLBAK(_sym_glLineWidth, glsym_func_void);
2098
2099    FINDSYM(_sym_glLinkProgram, "glLinkProgram", glsym_func_void);
2100    FALLBAK(_sym_glLinkProgram, glsym_func_void);
2101
2102    FINDSYM(_sym_glPixelStorei, "glPixelStorei", glsym_func_void);
2103    FALLBAK(_sym_glPixelStorei, glsym_func_void);
2104
2105    FINDSYM(_sym_glPolygonOffset, "glPolygonOffset", glsym_func_void);
2106    FALLBAK(_sym_glPolygonOffset, glsym_func_void);
2107
2108    FINDSYM(_sym_glReadPixels, "glReadPixels", glsym_func_void);
2109    FALLBAK(_sym_glReadPixels, glsym_func_void);
2110
2111    FINDSYM(_sym_glReleaseShaderCompiler, "glReleaseShaderCompiler", glsym_func_void);
2112    FALLBAK(_sym_glReleaseShaderCompiler, glsym_func_void);
2113
2114    FINDSYM(_sym_glRenderbufferStorage, "glRenderbufferStorage", glsym_func_void);
2115    FALLBAK(_sym_glRenderbufferStorage, glsym_func_void);
2116
2117    FINDSYM(_sym_glSampleCoverage, "glSampleCoverage", glsym_func_void);
2118    FALLBAK(_sym_glSampleCoverage, glsym_func_void);
2119
2120    FINDSYM(_sym_glScissor, "glScissor", glsym_func_void);
2121    FALLBAK(_sym_glScissor, glsym_func_void);
2122
2123    FINDSYM(_sym_glShaderBinary, "glShaderBinary", glsym_func_void);
2124    FALLBAK(_sym_glShaderBinary, glsym_func_void);
2125
2126    FINDSYM(_sym_glShaderSource, "glShaderSource", glsym_func_void);
2127    FALLBAK(_sym_glShaderSource, glsym_func_void);
2128
2129    FINDSYM(_sym_glStencilFunc, "glStencilFunc", glsym_func_void);
2130    FALLBAK(_sym_glStencilFunc, glsym_func_void);
2131
2132    FINDSYM(_sym_glStencilFuncSeparate, "glStencilFuncSeparate", glsym_func_void);
2133    FALLBAK(_sym_glStencilFuncSeparate, glsym_func_void);
2134
2135    FINDSYM(_sym_glStencilMask, "glStencilMask", glsym_func_void);
2136    FALLBAK(_sym_glStencilMask, glsym_func_void);
2137
2138    FINDSYM(_sym_glStencilMaskSeparate, "glStencilMaskSeparate", glsym_func_void);
2139    FALLBAK(_sym_glStencilMaskSeparate, glsym_func_void);
2140
2141    FINDSYM(_sym_glStencilOp, "glStencilOp", glsym_func_void);
2142    FALLBAK(_sym_glStencilOp, glsym_func_void);
2143
2144    FINDSYM(_sym_glStencilOpSeparate, "glStencilOpSeparate", glsym_func_void);
2145    FALLBAK(_sym_glStencilOpSeparate, glsym_func_void);
2146
2147    FINDSYM(_sym_glTexImage2D, "glTexImage2D", glsym_func_void);
2148    FALLBAK(_sym_glTexImage2D, glsym_func_void);
2149
2150    FINDSYM(_sym_glTexParameterf, "glTexParameterf", glsym_func_void);
2151    FALLBAK(_sym_glTexParameterf, glsym_func_void);
2152
2153    FINDSYM(_sym_glTexParameterfv, "glTexParameterfv", glsym_func_void);
2154    FALLBAK(_sym_glTexParameterfv, glsym_func_void);
2155
2156    FINDSYM(_sym_glTexParameteri, "glTexParameteri", glsym_func_void);
2157    FALLBAK(_sym_glTexParameteri, glsym_func_void);
2158
2159    FINDSYM(_sym_glTexParameteriv, "glTexParameteriv", glsym_func_void);
2160    FALLBAK(_sym_glTexParameteriv, glsym_func_void);
2161
2162    FINDSYM(_sym_glTexSubImage2D, "glTexSubImage2D", glsym_func_void);
2163    FALLBAK(_sym_glTexSubImage2D, glsym_func_void);
2164
2165    FINDSYM(_sym_glUniform1f, "glUniform1f", glsym_func_void);
2166    FALLBAK(_sym_glUniform1f, glsym_func_void);
2167
2168    FINDSYM(_sym_glUniform1fv, "glUniform1fv", glsym_func_void);
2169    FALLBAK(_sym_glUniform1fv, glsym_func_void);
2170
2171    FINDSYM(_sym_glUniform1i, "glUniform1i", glsym_func_void);
2172    FALLBAK(_sym_glUniform1i, glsym_func_void);
2173
2174    FINDSYM(_sym_glUniform1iv, "glUniform1iv", glsym_func_void);
2175    FALLBAK(_sym_glUniform1iv, glsym_func_void);
2176
2177    FINDSYM(_sym_glUniform2f, "glUniform2f", glsym_func_void);
2178    FALLBAK(_sym_glUniform2f, glsym_func_void);
2179
2180    FINDSYM(_sym_glUniform2fv, "glUniform2fv", glsym_func_void);
2181    FALLBAK(_sym_glUniform2fv, glsym_func_void);
2182
2183    FINDSYM(_sym_glUniform2i, "glUniform2i", glsym_func_void);
2184    FALLBAK(_sym_glUniform2i, glsym_func_void);
2185
2186    FINDSYM(_sym_glUniform2iv, "glUniform2iv", glsym_func_void);
2187    FALLBAK(_sym_glUniform2iv, glsym_func_void);
2188
2189    FINDSYM(_sym_glUniform3f, "glUniform3f", glsym_func_void);
2190    FALLBAK(_sym_glUniform3f, glsym_func_void);
2191
2192    FINDSYM(_sym_glUniform3fv, "glUniform3fv", glsym_func_void);
2193    FALLBAK(_sym_glUniform3fv, glsym_func_void);
2194
2195    FINDSYM(_sym_glUniform3i, "glUniform3i", glsym_func_void);
2196    FALLBAK(_sym_glUniform3i, glsym_func_void);
2197
2198    FINDSYM(_sym_glUniform3iv, "glUniform3iv", glsym_func_void);
2199    FALLBAK(_sym_glUniform3iv, glsym_func_void);
2200
2201    FINDSYM(_sym_glUniform4f, "glUniform4f", glsym_func_void);
2202    FALLBAK(_sym_glUniform4f, glsym_func_void);
2203
2204    FINDSYM(_sym_glUniform4fv, "glUniform4fv", glsym_func_void);
2205    FALLBAK(_sym_glUniform4fv, glsym_func_void);
2206
2207    FINDSYM(_sym_glUniform4i, "glUniform4i", glsym_func_void);
2208    FALLBAK(_sym_glUniform4i, glsym_func_void);
2209
2210    FINDSYM(_sym_glUniform4iv, "glUniform4iv", glsym_func_void);
2211    FALLBAK(_sym_glUniform4iv, glsym_func_void);
2212
2213    FINDSYM(_sym_glUniformMatrix2fv, "glUniformMatrix2fv", glsym_func_void);
2214    FALLBAK(_sym_glUniformMatrix2fv, glsym_func_void);
2215
2216    FINDSYM(_sym_glUniformMatrix3fv, "glUniformMatrix3fv", glsym_func_void);
2217    FALLBAK(_sym_glUniformMatrix3fv, glsym_func_void);
2218
2219    FINDSYM(_sym_glUniformMatrix4fv, "glUniformMatrix4fv", glsym_func_void);
2220    FALLBAK(_sym_glUniformMatrix4fv, glsym_func_void);
2221
2222    FINDSYM(_sym_glUseProgram, "glUseProgram", glsym_func_void);
2223    FALLBAK(_sym_glUseProgram, glsym_func_void);
2224
2225    FINDSYM(_sym_glValidateProgram, "glValidateProgram", glsym_func_void);
2226    FALLBAK(_sym_glValidateProgram, glsym_func_void);
2227
2228    FINDSYM(_sym_glVertexAttrib1f, "glVertexAttrib1f", glsym_func_void);
2229    FALLBAK(_sym_glVertexAttrib1f, glsym_func_void);
2230
2231    FINDSYM(_sym_glVertexAttrib1fv, "glVertexAttrib1fv", glsym_func_void);
2232    FALLBAK(_sym_glVertexAttrib1fv, glsym_func_void);
2233
2234    FINDSYM(_sym_glVertexAttrib2f, "glVertexAttrib2f", glsym_func_void);
2235    FALLBAK(_sym_glVertexAttrib2f, glsym_func_void);
2236
2237    FINDSYM(_sym_glVertexAttrib2fv, "glVertexAttrib2fv", glsym_func_void);
2238    FALLBAK(_sym_glVertexAttrib2fv, glsym_func_void);
2239
2240    FINDSYM(_sym_glVertexAttrib3f, "glVertexAttrib3f", glsym_func_void);
2241    FALLBAK(_sym_glVertexAttrib3f, glsym_func_void);
2242
2243    FINDSYM(_sym_glVertexAttrib3fv, "glVertexAttrib3fv", glsym_func_void);
2244    FALLBAK(_sym_glVertexAttrib3fv, glsym_func_void);
2245
2246    FINDSYM(_sym_glVertexAttrib4f, "glVertexAttrib4f", glsym_func_void);
2247    FALLBAK(_sym_glVertexAttrib4f, glsym_func_void);
2248
2249    FINDSYM(_sym_glVertexAttrib4fv, "glVertexAttrib4fv", glsym_func_void);
2250    FALLBAK(_sym_glVertexAttrib4fv, glsym_func_void);
2251
2252    FINDSYM(_sym_glVertexAttribPointer, "glVertexAttribPointer", glsym_func_void);
2253    FALLBAK(_sym_glVertexAttribPointer, glsym_func_void);
2254
2255    FINDSYM(_sym_glViewport, "glViewport", glsym_func_void);
2256    FALLBAK(_sym_glViewport, glsym_func_void);
2257
2258 #undef FINDSYM
2259 #undef FALLBAK
2260
2261    // Checking to see if this function exists is a poor but reasonable way to 
2262    // check if it's gles but it works for now
2263    if (_sym_glGetShaderPrecisionFormat != (typeof(_sym_glGetShaderPrecisionFormat))sym_missing ) 
2264      {
2265         DBG("GL Library is GLES.");
2266         gl_lib_is_gles = 1;
2267      }
2268
2269    return 1;
2270 }
2271
2272 //--------------------------------------------------------------//
2273 // Wrapped GL APIs to handle desktop compatibility
2274
2275 // Stripping precision code from GLES shader for desktop compatibility
2276 // Code adopted from Meego GL code. Temporary Fix.  
2277 static const char *
2278 opengl_strtok(const char *s, int *n, char **saveptr, char *prevbuf)
2279 {
2280    char *start;
2281    char *ret;
2282    char *p;
2283    int retlen;
2284    static const char *delim = " \t\n\r/";
2285
2286    if (prevbuf) free(prevbuf);
2287
2288    if (s) 
2289       *saveptr = (char *)s;
2290    else 
2291      {
2292         if (!(*saveptr) || !(*n))
2293            return NULL;
2294         s = *saveptr;
2295      }
2296
2297    for (; *n && strchr(delim, *s); s++, (*n)--) 
2298      {
2299         if (*s == '/' && *n > 1) 
2300           {
2301              if (s[1] == '/') 
2302                {
2303                   do 
2304                     {
2305                        s++, (*n)--;
2306                     } 
2307                   while (*n > 1 && s[1] != '\n' && s[1] != '\r');
2308                } 
2309              else if (s[1] == '*') 
2310                {
2311                   do 
2312                     {
2313                        s++, (*n)--;
2314                     } 
2315                   while (*n > 2 && (s[1] != '*' || s[2] != '/'));
2316                   s++, (*n)--;
2317                }
2318           }
2319      }
2320
2321    start = (char *)s;
2322    for (; *n && *s && !strchr(delim, *s); s++, (*n)--);
2323    if (*n > 0) s++, (*n)--;
2324
2325    *saveptr = (char *)s;
2326
2327    retlen = s - start;
2328    ret = malloc(retlen + 1);
2329    p = ret;
2330
2331    while (retlen > 0) 
2332      {
2333         if (*start == '/' && retlen > 1) 
2334           {
2335              if (start[1] == '/') 
2336                {
2337                   do 
2338                     {
2339                        start++, retlen--;
2340                     } 
2341                   while (retlen > 1 && start[1] != '\n' && start[1] != '\r');
2342                   start++, retlen--;
2343                   continue;
2344                } 
2345              else if (start[1] == '*') 
2346                {
2347                   do 
2348                     {
2349                        start++, retlen--;
2350                     } 
2351                   while (retlen > 2 && (start[1] != '*' || start[2] != '/'));
2352                   start += 3, retlen -= 3;
2353                   continue;
2354                }
2355           }
2356         *(p++) = *(start++), retlen--;
2357      }
2358
2359    *p = 0;
2360    return ret;
2361 }       
2362
2363 static char *
2364 patch_gles_shader(const char *source, int length, int *patched_len)
2365 {
2366    char *saveptr = NULL;
2367    char *sp;
2368    char *p = NULL;
2369
2370    if (!length) length = strlen(source);
2371
2372    *patched_len = 0;
2373    int patched_size = length;
2374    char *patched = malloc(patched_size + 1);
2375
2376    if (!patched) return NULL;
2377
2378    p = (char *)opengl_strtok(source, &length, &saveptr, NULL);
2379    for (; p; p = (char *)opengl_strtok(0, &length, &saveptr, p)) 
2380      {
2381         if (!strncmp(p, "lowp", 4) || !strncmp(p, "mediump", 7) || !strncmp(p, "highp", 5)) 
2382           {
2383              continue;
2384           } 
2385         else if (!strncmp(p, "precision", 9)) 
2386           {
2387              while ((p = (char *)opengl_strtok(0, &length, &saveptr, p)) && !strchr(p, ';'));
2388           } 
2389         else 
2390           {
2391              if (!strncmp(p, "gl_MaxVertexUniformVectors", 26)) 
2392                {
2393                   p = "(gl_MaxVertexUniformComponents / 4)";
2394                } 
2395              else if (!strncmp(p, "gl_MaxFragmentUniformVectors", 28)) 
2396                {
2397                   p = "(gl_MaxFragmentUniformComponents / 4)";
2398                } 
2399              else if (!strncmp(p, "gl_MaxVaryingVectors", 20)) 
2400                {
2401                   p = "(gl_MaxVaryingFloats / 4)";
2402                }
2403
2404              int new_len = strlen(p);
2405              if (*patched_len + new_len > patched_size) 
2406                {
2407                   patched_size *= 2;
2408                   patched = realloc(patched, patched_size + 1);
2409
2410                   if (!patched) 
2411                      return NULL;
2412                }
2413
2414              memcpy(patched + *patched_len, p, new_len);
2415              *patched_len += new_len;
2416           }     
2417      }
2418
2419    patched[*patched_len] = 0;
2420    /* check that we don't leave dummy preprocessor lines */
2421    for (sp = patched; *sp;) 
2422      {
2423         for (; *sp == ' ' || *sp == '\t'; sp++);
2424         if (!strncmp(sp, "#define", 7)) 
2425           {
2426              for (p = sp + 7; *p == ' ' || *p == '\t'; p++);
2427              if (*p == '\n' || *p == '\r' || *p == '/') 
2428                {
2429                   memset(sp, 0x20, 7);
2430                }
2431           }
2432         for (; *sp && *sp != '\n' && *sp != '\r'; sp++);
2433         for (; *sp == '\n' || *sp == '\r'; sp++);
2434      }
2435    return patched;
2436 }
2437
2438 static void
2439 evgl_glShaderSource(GLuint shader, GLsizei count, const char** string, const GLint* length)
2440 {
2441    int i = 0, len = 0;
2442
2443    char **s = malloc(count * sizeof(char*));
2444    GLint *l = malloc(count * sizeof(GLint));
2445
2446    memset(s, 0, count * sizeof(char*));
2447    memset(l, 0, count * sizeof(GLint));
2448
2449    for (i = 0; i < count; ++i) 
2450      {
2451         if (length) 
2452           {
2453              len = length[i];
2454              if (len < 0) 
2455                 len = string[i] ? strlen(string[i]) : 0;
2456           }
2457         else
2458            len = string[i] ? strlen(string[i]) : 0;
2459
2460         if (string[i]) 
2461           {
2462              s[i] = patch_gles_shader(string[i], len, &l[i]);
2463              if (!s[i]) 
2464                {
2465                   while(i)
2466                      free(s[--i]);
2467                   free(l);
2468                   free(s);
2469
2470                   DBG("Patching Shader Failed.");
2471                   return;
2472                }
2473           } 
2474         else 
2475           {
2476              s[i] = NULL;
2477              l[i] = 0;
2478           }
2479      }
2480
2481    _sym_glShaderSource(shader, count, (const char **)s, l);
2482
2483    while(i)
2484       free(s[--i]);
2485    free(l);
2486    free(s);
2487 }
2488
2489
2490 static void
2491 evgl_glGetShaderPrecisionFormat(GLenum shadertype __UNUSED__, GLenum precisiontype __UNUSED__, GLint* range, GLint* precision)
2492 {
2493    if (range)
2494      {
2495         range[0] = -126; // floor(log2(FLT_MIN))
2496         range[1] = 127; // floor(log2(FLT_MAX))
2497      }
2498    if (precision)
2499      {
2500         precision[0] = 24; // floor(-log2((1.0/16777218.0)));
2501      }
2502    return;
2503 }
2504
2505 static void
2506 evgl_glReleaseShaderCompiler(void)
2507 {
2508    DBG("Not supported in Desktop GL");
2509    return;
2510 }
2511
2512 static void
2513 evgl_glShaderBinary(GLsizei n __UNUSED__, const GLuint* shaders __UNUSED__, GLenum binaryformat __UNUSED__, const void* binary __UNUSED__, GLsizei length __UNUSED__)
2514 {
2515    // FIXME: need to dlsym/getprocaddress for this
2516    DBG("Not supported in Desktop GL");
2517    return;
2518    //n = binaryformat = length = 0;
2519    //shaders = binary = 0;
2520 }
2521 #endif
2522 //--------------------------------------------------------------//
2523
2524
2525 #ifdef EVAS_GL
2526 static void
2527 override_gl_apis(Evas_GL_API *api)
2528 {
2529
2530    api->version = EVAS_GL_API_VERSION;
2531
2532 #define ORD(f) EVAS_API_OVERRIDE(f, api, _sym_)
2533    // GLES 2.0
2534    ORD(glActiveTexture);
2535    ORD(glAttachShader);
2536    ORD(glBindAttribLocation);
2537    ORD(glBindBuffer);
2538    ORD(glBindFramebuffer);
2539    ORD(glBindRenderbuffer);
2540    ORD(glBindTexture);
2541    ORD(glBlendColor);
2542    ORD(glBlendEquation);
2543    ORD(glBlendEquationSeparate);
2544    ORD(glBlendFunc);
2545    ORD(glBlendFuncSeparate);
2546    ORD(glBufferData);
2547    ORD(glBufferSubData);
2548    ORD(glCheckFramebufferStatus);
2549    ORD(glClear);
2550    ORD(glClearColor);
2551    ORD(glClearDepthf);     
2552    ORD(glClearStencil);
2553    ORD(glColorMask);
2554    ORD(glCompileShader);
2555    ORD(glCompressedTexImage2D);
2556    ORD(glCompressedTexSubImage2D);
2557    ORD(glCopyTexImage2D);
2558    ORD(glCopyTexSubImage2D);
2559    ORD(glCreateProgram);
2560    ORD(glCreateShader);
2561    ORD(glCullFace);
2562    ORD(glDeleteBuffers);
2563    ORD(glDeleteFramebuffers);
2564    ORD(glDeleteProgram);
2565    ORD(glDeleteRenderbuffers);
2566    ORD(glDeleteShader);
2567    ORD(glDeleteTextures);
2568    ORD(glDepthFunc);
2569    ORD(glDepthMask);
2570    ORD(glDepthRangef);     
2571    ORD(glDetachShader);
2572    ORD(glDisable);
2573    ORD(glDisableVertexAttribArray);
2574    ORD(glDrawArrays);
2575    ORD(glDrawElements);
2576    ORD(glEnable);
2577    ORD(glEnableVertexAttribArray);
2578    ORD(glFinish);
2579    ORD(glFlush);
2580    ORD(glFramebufferRenderbuffer);
2581    ORD(glFramebufferTexture2D);
2582    ORD(glFrontFace);
2583    ORD(glGenBuffers);
2584    ORD(glGenerateMipmap);
2585    ORD(glGenFramebuffers);
2586    ORD(glGenRenderbuffers);
2587    ORD(glGenTextures);
2588    ORD(glGetActiveAttrib);
2589    ORD(glGetActiveUniform);
2590    ORD(glGetAttachedShaders);
2591    ORD(glGetAttribLocation);
2592    ORD(glGetBooleanv);
2593    ORD(glGetBufferParameteriv);
2594    ORD(glGetError);
2595    ORD(glGetFloatv);
2596    ORD(glGetFramebufferAttachmentParameteriv);
2597    ORD(glGetIntegerv);
2598    ORD(glGetProgramiv);
2599    ORD(glGetProgramInfoLog);
2600    ORD(glGetRenderbufferParameteriv);
2601    ORD(glGetShaderiv);
2602    ORD(glGetShaderInfoLog);
2603    ORD(glGetShaderPrecisionFormat);  
2604    ORD(glGetShaderSource);
2605    ORD(glGetString);             // FIXME
2606    ORD(glGetTexParameterfv);
2607    ORD(glGetTexParameteriv);
2608    ORD(glGetUniformfv);
2609    ORD(glGetUniformiv);
2610    ORD(glGetUniformLocation);
2611    ORD(glGetVertexAttribfv);
2612    ORD(glGetVertexAttribiv);
2613    ORD(glGetVertexAttribPointerv);
2614    ORD(glHint);
2615    ORD(glIsBuffer);
2616    ORD(glIsEnabled);
2617    ORD(glIsFramebuffer);
2618    ORD(glIsProgram);
2619    ORD(glIsRenderbuffer);
2620    ORD(glIsShader);
2621    ORD(glIsTexture);
2622    ORD(glLineWidth);
2623    ORD(glLinkProgram);
2624    ORD(glPixelStorei);
2625    ORD(glPolygonOffset);
2626    ORD(glReadPixels);
2627    ORD(glReleaseShaderCompiler); 
2628    ORD(glRenderbufferStorage);
2629    ORD(glSampleCoverage);
2630    ORD(glScissor);
2631    ORD(glShaderBinary); 
2632    ORD(glShaderSource);
2633    ORD(glStencilFunc);
2634    ORD(glStencilFuncSeparate);
2635    ORD(glStencilMask);
2636    ORD(glStencilMaskSeparate);
2637    ORD(glStencilOp);
2638    ORD(glStencilOpSeparate);
2639    ORD(glTexImage2D);
2640    ORD(glTexParameterf);
2641    ORD(glTexParameterfv);
2642    ORD(glTexParameteri);
2643    ORD(glTexParameteriv);
2644    ORD(glTexSubImage2D);
2645    ORD(glUniform1f);
2646    ORD(glUniform1fv);
2647    ORD(glUniform1i);
2648    ORD(glUniform1iv);
2649    ORD(glUniform2f);
2650    ORD(glUniform2fv);
2651    ORD(glUniform2i);
2652    ORD(glUniform2iv);
2653    ORD(glUniform3f);
2654    ORD(glUniform3fv);
2655    ORD(glUniform3i);
2656    ORD(glUniform3iv);
2657    ORD(glUniform4f);
2658    ORD(glUniform4fv);
2659    ORD(glUniform4i);
2660    ORD(glUniform4iv);
2661    ORD(glUniformMatrix2fv);
2662    ORD(glUniformMatrix3fv);
2663    ORD(glUniformMatrix4fv);
2664    ORD(glUseProgram);
2665    ORD(glValidateProgram);
2666    ORD(glVertexAttrib1f);
2667    ORD(glVertexAttrib1fv);
2668    ORD(glVertexAttrib2f);
2669    ORD(glVertexAttrib2fv);
2670    ORD(glVertexAttrib3f);
2671    ORD(glVertexAttrib3fv);
2672    ORD(glVertexAttrib4f);
2673    ORD(glVertexAttrib4fv);
2674    ORD(glVertexAttribPointer);
2675    ORD(glViewport);
2676 #undef ORD
2677
2678 #define ORD(f) EVAS_API_OVERRIDE(f, &gl_funcs, evgl_)
2679    if (!gl_lib_is_gles)
2680      {
2681         // Override functions wrapped by Evas_GL
2682         // GLES2.0 API compat on top of desktop gl
2683         ORD(glGetShaderPrecisionFormat);
2684         ORD(glReleaseShaderCompiler);
2685         ORD(glShaderBinary);
2686      }
2687
2688    ORD(glShaderSource);    // Do precision stripping in both cases
2689 #undef ORD
2690 }
2691 #endif
2692
2693 //-------------------------------------------//
2694 static int
2695 gl_lib_init(void)
2696 {
2697 #ifdef EVAS_GL
2698    // dlopen OSMesa 
2699    gl_lib_handle = dlopen("libOSMesa.so.1", RTLD_NOW);
2700    if (!gl_lib_handle) gl_lib_handle = dlopen("libOSMesa.so", RTLD_NOW);
2701    if (!gl_lib_handle)
2702      {
2703         DBG("Unable to open libOSMesa:  %s", dlerror());
2704         return 0;
2705      }
2706
2707    //------------------------------------------------//
2708    if (!glue_sym_init()) return 0;
2709    if (!gl_sym_init()) return 0;
2710
2711    override_gl_apis(&gl_funcs);
2712
2713    return 1;
2714 #else
2715    return 0;
2716 #endif
2717 }
2718
2719
2720 static void
2721 init_gl(void)
2722 {
2723    DBG("Initializing Software OpenGL APIs...\n");
2724
2725    if (!gl_lib_init())
2726       DBG("Unable to support EvasGL in this engine module. Install OSMesa to get it running");
2727    else
2728      {
2729 #define ORD(f) EVAS_API_OVERRIDE(f, &func, eng_)
2730         ORD(gl_surface_create);
2731         ORD(gl_surface_destroy);
2732         ORD(gl_context_create);
2733         ORD(gl_context_destroy);
2734         ORD(gl_make_current);
2735         ORD(gl_string_query);           // FIXME: Need to implement
2736         ORD(gl_proc_address_get);       // FIXME: Need to implement
2737         ORD(gl_native_surface_get);
2738         ORD(gl_api_get);
2739 #undef ORD
2740      }
2741 }
2742
2743
2744 /*
2745  *****
2746  **
2747  ** MODULE ACCESSIBLE API API
2748  **
2749  *****
2750  */
2751
2752 static int
2753 module_open(Evas_Module *em)
2754 {
2755    if (!em) return 0;
2756    _evas_soft_gen_log_dom = eina_log_domain_register
2757      ("evas-software_generic", EVAS_DEFAULT_LOG_COLOR);
2758    if(_evas_soft_gen_log_dom<0)
2759      {
2760         EINA_LOG_ERR("Can not create a module log domain.");
2761         return 0;
2762      }
2763
2764    init_gl();
2765
2766    em->functions = (void *)(&func);
2767    cpunum = eina_cpu_count();
2768    return 1;
2769 }
2770
2771 static void
2772 module_close(Evas_Module *em __UNUSED__)
2773 {
2774   eina_log_domain_unregister(_evas_soft_gen_log_dom);
2775 }
2776
2777 static Evas_Module_Api evas_modapi =
2778 {
2779    EVAS_MODULE_API_VERSION,
2780    "software_generic",
2781    "none",
2782    {
2783      module_open,
2784      module_close
2785    }
2786 };
2787
2788 EVAS_MODULE_DEFINE(EVAS_MODULE_TYPE_ENGINE, engine, software_generic);
2789
2790 #ifndef EVAS_STATIC_BUILD_SOFTWARE_GENERIC
2791 EVAS_EINA_MODULE_DEFINE(engine, software_generic);
2792 #endif