summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Michael <cp.michael@samsung.com>2013-02-26 13:52:37 +0000
committerTom Hacohen <tom@stosb.com>2013-02-26 13:52:54 +0000
commitcbc203e0bf56c116c17859a064c23eb82e2d669b (patch)
tree497afe5e06cc1f41d0129f2cc14767874c987607
parent211c33ff6e76e5d3f7dd7ac3c2feaad6900c5e3c (diff)
downloadefl-cbc203e0bf56c116c17859a064c23eb82e2d669b.tar.gz
Evas: Fixed wrong EINA_UNUSED usage in the gl_x11 engine.
-rw-r--r--src/modules/evas/engines/gl_x11/evas_engine.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/evas/engines/gl_x11/evas_engine.c b/src/modules/evas/engines/gl_x11/evas_engine.c
index c21717359d..27a1c4e73f 100644
--- a/src/modules/evas/engines/gl_x11/evas_engine.c
+++ b/src/modules/evas/engines/gl_x11/evas_engine.c
@@ -2689,7 +2689,7 @@ eng_gl_context_destroy(void *data, void *context)
}
static int
-eng_gl_make_current(void *data EINA_UNUSED, void *surface, void *context)
+eng_gl_make_current(void *data, void *surface, void *context)
{
Render_Engine *re = (Render_Engine *)data;
EVGL_Surface *sfc = (EVGL_Surface *)surface;
@@ -2699,7 +2699,7 @@ eng_gl_make_current(void *data EINA_UNUSED, void *surface, void *context)
}
static void *
-eng_gl_string_query(void *data EINA_UNUSED, int name)
+eng_gl_string_query(void *data, int name)
{
Render_Engine *re = (Render_Engine *)data;
@@ -2714,7 +2714,7 @@ eng_gl_proc_address_get(void *data EINA_UNUSED, const char *name EINA_UNUSED)
}
static int
-eng_gl_native_surface_get(void *data EINA_UNUSED, void *surface, void *native_surface)
+eng_gl_native_surface_get(void *data, void *surface, void *native_surface)
{
Render_Engine *re = (Render_Engine *)data;
EVGL_Surface *sfc = (EVGL_Surface *)surface;
@@ -2724,7 +2724,7 @@ eng_gl_native_surface_get(void *data EINA_UNUSED, void *surface, void *native_su
}
static void *
-eng_gl_api_get(void *data EINA_UNUSED)
+eng_gl_api_get(void *data)
{
Render_Engine *re = (Render_Engine *)data;