Evas: Check for dlsym and disable gl engines if not found
[profile/ivi/evas.git] / src / modules / engines / gl_common / evas_gl_private.h
1 #ifndef _EVAS_GL_PRIVATE_H
2 #define _EVAS_GL_PRIVATE_H
3 #include "evas_gl_common.h"
4
5 extern int _evas_engine_GL_common_log_dom;
6
7 #ifdef ERR
8 # undef ERR
9 #endif
10 #define ERR(...) EINA_LOG_DOM_ERR(_evas_engine_GL_common_log_dom, __VA_ARGS__)
11
12 #ifdef DBG
13 # undef DBG
14 #endif
15 #define DBG(...) EINA_LOG_DOM_DBG(_evas_engine_GL_common_log_dom, __VA_ARGS__)
16
17 #ifdef INF
18 # undef INF
19 #endif
20 #define INF(...) EINA_LOG_DOM_INFO(_evas_engine_GL_common_log_dom, __VA_ARGS__)
21
22 #ifdef WRN
23 # undef WRN
24 #endif
25 #define WRN(...) EINA_LOG_DOM_WARN(_evas_engine_GL_common_log_dom, __VA_ARGS__)
26
27 #ifdef CRIT
28 # undef CRIT
29 #endif
30 #define CRIT(...) EINA_LOG_DOM_CRIT(_evas_engine_GL_common_log_dom, __VA_ARGS__)
31
32 #endif