mirror of
https://github.com/brl/mutter.git
synced 2024-11-30 20:01:00 -05:00
14 lines
349 B
C
14 lines
349 B
C
|
#ifndef _META_SYNC_RING_H_
|
||
|
#define _META_SYNC_RING_H_
|
||
|
|
||
|
#include <glib.h>
|
||
|
#include <X11/Xlib.h>
|
||
|
|
||
|
gboolean meta_sync_ring_init (Display *dpy);
|
||
|
void meta_sync_ring_destroy (void);
|
||
|
gboolean meta_sync_ring_after_frame (void);
|
||
|
gboolean meta_sync_ring_insert_wait (void);
|
||
|
void meta_sync_ring_handle_event (XEvent *event);
|
||
|
|
||
|
#endif /* _META_SYNC_RING_H_ */
|