diff options
Diffstat (limited to 'xorg-server/present/present_priv.h')
-rw-r--r-- | xorg-server/present/present_priv.h | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/xorg-server/present/present_priv.h b/xorg-server/present/present_priv.h index a92b62a2d..500c7c265 100644 --- a/xorg-server/present/present_priv.h +++ b/xorg-server/present/present_priv.h @@ -72,8 +72,6 @@ struct present_vblank { Bool flip; Bool sync_flip; Bool abort_flip; - - Bool window_destroyed; }; typedef struct present_screen_priv { @@ -251,6 +249,14 @@ present_fence_destroy(struct present_fence *present_fence); void present_fence_set_triggered(struct present_fence *present_fence); +Bool +present_fence_check_triggered(struct present_fence *present_fence); + +void +present_fence_set_callback(struct present_fence *present_fence, + void (*callback)(void *param), + void *param); + XID present_fence_id(struct present_fence *present_fence); @@ -273,6 +279,13 @@ void present_destroy_notifies(present_notify_ptr notifies, int num_notifies); /* + * present_redirect.c + */ + +WindowPtr +present_redirect(ClientPtr client, WindowPtr target); + +/* * present_request.c */ int |