warning--

SVN revision: 64387
This commit is contained in:
Carsten Haitzler 2011-10-25 12:07:56 +00:00
parent bc10321643
commit 4483c0ef6f
2 changed files with 4 additions and 4 deletions

View File

@ -3192,12 +3192,11 @@ eng_gl_context_destroy(void *data, void *context)
}
static int
eng_gl_make_current(void *data, void *surface, void *context)
eng_gl_make_current(void *data __UNUSED__, void *surface, void *context)
{
Render_Engine *re;
Render_Engine_GL_Surface *sfc;
Render_Engine_GL_Context *ctx;
Render_Engine_GL_Resource *rsc;
int ret = 0;
re = (Render_Engine *)data;
@ -3297,7 +3296,7 @@ eng_gl_make_current(void *data, void *surface, void *context)
}
static void *
eng_gl_string_query(void *data, int name)
eng_gl_string_query(void *data __UNUSED__, int name)
{
switch(name)
{

View File

@ -1177,7 +1177,8 @@ static Evas_Func func =
eng_image_animated_loop_type_get,
eng_image_animated_loop_count_get,
eng_image_animated_frame_duration_get,
eng_image_animated_frame_set
eng_image_animated_frame_set,
NULL
/* FUTURE software generic calls go here */
};