Match up function names so gl_xll can work

SVN revision: 21056
This commit is contained in:
stffrdhrn 2006-03-07 00:24:37 +00:00 committed by stffrdhrn
parent 1dcdaeec81
commit 9e57a967df
2 changed files with 6 additions and 6 deletions

View File

@ -28,7 +28,7 @@ extern XVisualInfo *_evas_gl_x11_vi;
extern Colormap _evas_gl_x11_cmap; extern Colormap _evas_gl_x11_cmap;
Evas_GL_X11_Window * Evas_GL_X11_Window *
evas_engine_gl_x11_window_new(Display *disp, eng_window_new(Display *disp,
Window win, Window win,
int screen, int screen,
Visual *vis, Visual *vis,
@ -37,8 +37,8 @@ Evas_GL_X11_Window *
int w, int w,
int h); int h);
void void
evas_engine_gl_x11_window_free(Evas_GL_X11_Window *gw); eng_window_free(Evas_GL_X11_Window *gw);
void void
evas_engine_gl_x11_window_use(Evas_GL_X11_Window *gw); eng_window_use(Evas_GL_X11_Window *gw);
#endif #endif

View File

@ -24,7 +24,7 @@ XVisualInfo *_evas_gl_x11_vi = NULL;
Colormap _evas_gl_x11_cmap = 0; Colormap _evas_gl_x11_cmap = 0;
Evas_GL_X11_Window * Evas_GL_X11_Window *
evas_engine_gl_x11_window_new(Display *disp, eng_window_new(Display *disp,
Window win, Window win,
int screen, int screen,
Visual *vis, Visual *vis,
@ -62,7 +62,7 @@ evas_engine_gl_x11_window_new(Display *disp,
} }
void void
evas_engine_gl_x11_window_free(Evas_GL_X11_Window *gw) eng_window_free(Evas_GL_X11_Window *gw)
{ {
if (gw == _evas_gl_x11_window) _evas_gl_x11_window = NULL; if (gw == _evas_gl_x11_window) _evas_gl_x11_window = NULL;
evas_gl_common_context_free(gw->gl_context); evas_gl_common_context_free(gw->gl_context);
@ -71,7 +71,7 @@ evas_engine_gl_x11_window_free(Evas_GL_X11_Window *gw)
} }
void void
evas_engine_gl_x11_window_use(Evas_GL_X11_Window *gw) eng_window_use(Evas_GL_X11_Window *gw)
{ {
if (_evas_gl_x11_window != gw) if (_evas_gl_x11_window != gw)
{ {