tizen 2.4 release
[framework/graphics/coregl.git] / src / coregl_override.c
1 #include "coregl_internal.h"
2 #include "coregl_export.h"
3
4 #include <stdlib.h>
5
6 void
7 init_overrides()
8 {
9 #define C_ORD(f) COREGL_OVERRIDE_API(ovr_, f, _sym_)
10
11 #define _COREGL_SYMBOL(RET_TYPE, FUNC_NAME, PARAM_LIST)     C_ORD(FUNC_NAME);
12 # include "headers/sym_egl.h"
13 #undef _COREGL_SYMBOL
14
15 #define _COREGL_SYMBOL(RET_TYPE, FUNC_NAME, PARAM_LIST)     C_ORD(FUNC_NAME);
16 # include "headers/sym_gl.h"
17 #undef _COREGL_SYMBOL
18
19 #undef C_ORD
20 }
21