Lines Matching refs:screen_priv
52 present_screen_priv_ptr screen_priv = present_screen_priv(screen); in present_wnmd_queue_vblank() local
53 return (*screen_priv->wnmd_info->queue_vblank) (window, crtc, event_id, msc); in present_wnmd_queue_vblank()
63 present_wnmd_query_capabilities(present_screen_priv_ptr screen_priv) in present_wnmd_query_capabilities() argument
65 return screen_priv->wnmd_info->capabilities; in present_wnmd_query_capabilities()
69 present_wnmd_get_crtc(present_screen_priv_ptr screen_priv, WindowPtr window) in present_wnmd_get_crtc() argument
71 return (*screen_priv->wnmd_info->get_crtc)(window); in present_wnmd_get_crtc()
77 present_screen_priv_ptr screen_priv = present_screen_priv(screen); in present_wnmd_get_ust_msc() local
78 return (*screen_priv->wnmd_info->get_ust_msc)(window, ust, msc); in present_wnmd_get_ust_msc()
167 present_screen_priv_ptr screen_priv = present_screen_priv(window->drawable.pScreen); in present_wnmd_flips_stop() local
171 (*screen_priv->wnmd_info->flips_stop) (window); in present_wnmd_flips_stop()
271 present_screen_priv_ptr screen_priv = present_screen_priv(screen); in present_wnmd_check_flip() local
277 if (!screen_priv) in present_wnmd_check_flip()
280 if (!screen_priv->wnmd_info) in present_wnmd_check_flip()
287 if (!screen_priv->wnmd_info->flip) in present_wnmd_check_flip()
312 if (screen_priv->wnmd_info->check_flip2) { in present_wnmd_check_flip()
313 if (!(*screen_priv->wnmd_info->check_flip2) (crtc, window, pixmap, sync_flip, reason)) { in present_wnmd_check_flip()
376 present_screen_priv_ptr screen_priv = present_screen_priv(screen); in present_wnmd_flip() local
378 return (*screen_priv->wnmd_info->flip) (window, in present_wnmd_flip()
402 present_screen_priv_ptr screen_priv = present_screen_priv(screen); in present_wnmd_can_window_flip() local
405 if (!screen_priv) in present_wnmd_can_window_flip()
408 if (!screen_priv->wnmd_info) in present_wnmd_can_window_flip()
412 if (!screen_priv->wnmd_info->flip) in present_wnmd_can_window_flip()
581 present_screen_priv_ptr screen_priv = present_screen_priv(screen); in present_wnmd_pixmap() local
586 target_crtc = present_wnmd_get_crtc(screen_priv, window); in present_wnmd_pixmap()
637 &screen_priv->wnmd_info->capabilities, in present_wnmd_pixmap()
666 present_screen_priv_ptr screen_priv = present_screen_priv(screen); in present_wnmd_abort_vblank() local
670 (*screen_priv->wnmd_info->abort_vblank) (window, crtc, event_id, msc); in present_wnmd_abort_vblank()
698 present_screen_priv_ptr screen_priv = present_screen_priv(screen); in present_wnmd_flush() local
700 (*screen_priv->wnmd_info->flush) (window); in present_wnmd_flush()
704 present_wnmd_init_mode_hooks(present_screen_priv_ptr screen_priv) in present_wnmd_init_mode_hooks() argument
706 screen_priv->query_capabilities = &present_wnmd_query_capabilities; in present_wnmd_init_mode_hooks()
707 screen_priv->get_crtc = &present_wnmd_get_crtc; in present_wnmd_init_mode_hooks()
709 screen_priv->check_flip = &present_wnmd_check_flip; in present_wnmd_init_mode_hooks()
710 screen_priv->check_flip_window = &present_wnmd_check_flip_window; in present_wnmd_init_mode_hooks()
711 screen_priv->can_window_flip = &present_wnmd_can_window_flip; in present_wnmd_init_mode_hooks()
713 screen_priv->present_pixmap = &present_wnmd_pixmap; in present_wnmd_init_mode_hooks()
714 screen_priv->create_event_id = &present_wnmd_create_event_id; in present_wnmd_init_mode_hooks()
715 screen_priv->queue_vblank = &present_wnmd_queue_vblank; in present_wnmd_init_mode_hooks()
716 screen_priv->flush = &present_wnmd_flush; in present_wnmd_init_mode_hooks()
717 screen_priv->re_execute = &present_wnmd_re_execute; in present_wnmd_init_mode_hooks()
719 screen_priv->abort_vblank = &present_wnmd_abort_vblank; in present_wnmd_init_mode_hooks()
720 screen_priv->flip_destroy = &present_wnmd_flip_destroy; in present_wnmd_init_mode_hooks()