Tizen Native API
|
Provides a set of helper functions and macros to use GLES 1.1 with Evas GL.
This file redefines all the OpenGL-ES 1.1 functions as follow:
#define glFunction __evas_gl_glapi->glFunction
Extension functions can then be checked for existence simply by writing:
if (glExtensionFunction)
{
...
glExtensionFunction(...);
...
}
When using Elementary GLView, please include the header file Elementary GL Helper functions instead.
This header file should be included when using Evas GL directly at a low level and with an OpenGL-ES 1.1 context only.
glFunctions
are now macros, which means that the Evas_GL_API struct can't be used anyore.