missing call if gl enigne not built.

SVN revision: 46763
This commit is contained in:
Carsten Haitzler 2010-03-02 01:43:45 +00:00
parent 0226ebda94
commit 07a9e63cb4
1 changed files with 6 additions and 1 deletions

View File

@ -2938,7 +2938,6 @@ ecore_evas_gl_x11_new(const char *disp_name, Ecore_X_Window parent,
{
return ecore_evas_gl_x11_options_new(disp_name, parent, x, y, w, h, NULL);
}
EAPI Ecore_Evas *
ecore_evas_gl_x11_options_new(const char *disp_name, Ecore_X_Window parent,
int x, int y, int w, int h, const int *opt)
@ -3049,6 +3048,12 @@ ecore_evas_gl_x11_new(const char *disp_name __UNUSED__, Ecore_X_Window parent __
{
return NULL;
}
EAPI Ecore_Evas *
ecore_evas_gl_x11_options_new(const char *disp_name, Ecore_X_Window parent,
int x, int y, int w, int h, const int *opt)
{
return NULL;
}
#endif /* ! BUILD_ECORE_EVAS_OPENGL_X11 */
/**