egl: fix some #ifdef guards

In the winsys vtable .xlib_get_visual_info and
.onscreen_x11_get_window_xid should be guarded by the
COGL_HAS_EGL_PLATFORM_POWERVR_X11_SUPPORT because they need to be there
if cogl is configured with --enable-xlib-egl-platform but not if just
configured with --enable-xlib.
This commit is contained in:
Robert Bragg 2011-05-25 01:57:20 +01:00
parent b934859dde
commit 4a97fc0a1e

View File

@ -1653,7 +1653,7 @@ static CoglWinsysVtable _cogl_winsys_vtable =
.context_deinit = _cogl_winsys_context_deinit, .context_deinit = _cogl_winsys_context_deinit,
.context_egl_get_egl_display = .context_egl_get_egl_display =
_cogl_winsys_context_egl_get_egl_display, _cogl_winsys_context_egl_get_egl_display,
#ifdef COGL_HAS_XLIB_SUPPORT #ifdef COGL_HAS_EGL_PLATFORM_POWERVR_X11_SUPPORT
.xlib_get_visual_info = _cogl_winsys_xlib_get_visual_info, .xlib_get_visual_info = _cogl_winsys_xlib_get_visual_info,
#endif #endif
.onscreen_init = _cogl_winsys_onscreen_init, .onscreen_init = _cogl_winsys_onscreen_init,
@ -1666,7 +1666,7 @@ static CoglWinsysVtable _cogl_winsys_vtable =
#endif #endif
.onscreen_update_swap_throttled = .onscreen_update_swap_throttled =
_cogl_winsys_onscreen_update_swap_throttled, _cogl_winsys_onscreen_update_swap_throttled,
#ifdef COGL_HAS_XLIB_SUPPORT #ifdef COGL_HAS_EGL_PLATFORM_POWERVR_X11_SUPPORT
.onscreen_x11_get_window_xid = .onscreen_x11_get_window_xid =
_cogl_winsys_onscreen_x11_get_window_xid, _cogl_winsys_onscreen_x11_get_window_xid,
#endif #endif