mirror of
https://github.com/brl/mutter.git
synced 2025-02-17 05:44:08 +00:00
Revert "quartz: Remove X11 ifdefs"
This reverts commit eb81ec945c073bc87dc622d8b27906270953df8b. We are backing out the quartz specific stub winsys since we can simply use the generic stub winsys on quartz until we develop a standalone winsys. Since we plan on removing all special cases for the stub winsys by handling with a winsys vtable like all the others it's better if we don't introduce a quartz specific stub.
This commit is contained in:
parent
cb321e0e5f
commit
891a9c33c5
@ -74,6 +74,24 @@ _cogl_winsys_onscreen_remove_swap_buffers_callback (CoglOnscreen *onscreen,
|
|||||||
g_assert (0);
|
g_assert (0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef COGL_HAS_XLIB_SUPPORT
|
||||||
|
XVisualInfo *
|
||||||
|
_cogl_winsys_xlib_get_visual_info (void)
|
||||||
|
{
|
||||||
|
g_assert (0);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef COGL_HAS_X11_SUPPORT
|
||||||
|
guint32
|
||||||
|
_cogl_winsys_onscreen_x11_get_window_xid (CoglOnscreen *onscreen)
|
||||||
|
{
|
||||||
|
g_assert (0);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
_cogl_winsys_onscreen_init (CoglOnscreen *onscreen,
|
_cogl_winsys_onscreen_init (CoglOnscreen *onscreen,
|
||||||
GError **error)
|
GError **error)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user