Home
last modified time | relevance | path

Searched refs:present_fence (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/external/xserver/present/
H A Dpresent_fence.c37 struct present_fence { struct
50 … struct present_fence *present_fence = container_of(trigger, struct present_fence, trigger); in present_fence_sync_check_trigger() local
52 return present_fence->callback != NULL; in present_fence_sync_check_trigger()
58 … struct present_fence *present_fence = container_of(trigger, struct present_fence, trigger); in present_fence_sync_trigger_fired() local
60 if (present_fence->callback) in present_fence_sync_trigger_fired()
61 (*present_fence->callback)(present_fence->param); in present_fence_sync_trigger_fired()
67 … struct present_fence *present_fence = container_of(trigger, struct present_fence, trigger); in present_fence_sync_counter_destroyed() local
69 present_fence->fence = NULL; in present_fence_sync_counter_destroyed()
72 struct present_fence *
75 struct present_fence *present_fence; in present_fence_create() local
[all …]
H A Dpresent_priv.h49 typedef struct present_fence *present_fence_ptr;
275 …ixmap_idle(PixmapPtr pixmap, WindowPtr window, CARD32 serial, struct present_fence *present_fence);
372 struct present_fence *
376 present_fence_destroy(struct present_fence *present_fence);
379 present_fence_set_triggered(struct present_fence *present_fence);
382 present_fence_check_triggered(struct present_fence *present_fence);
385 present_fence_set_callback(struct present_fence *present_fence,
390 present_fence_id(struct present_fence *present_fence);
H A Dpresent.c106 …pixmap_idle(PixmapPtr pixmap, WindowPtr window, CARD32 serial, struct present_fence *present_fence) in present_pixmap_idle() argument
108 if (present_fence) in present_pixmap_idle()
109 present_fence_set_triggered(present_fence); in present_pixmap_idle()
112 present_send_idle_notify(window, serial, pixmap, present_fence); in present_pixmap_idle()
H A DMakefile.am12 present_fence.c \
H A Dmeson.build6 'present_fence.c',
H A DMakefile.in116 present_execute.lo present_fake.lo present_fence.lo \
141 ./$(DEPDIR)/present_fake.Plo ./$(DEPDIR)/present_fence.Plo \
591 present_fence.c \
659 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/present_fence.Plo@am__quote@ # am--include-marker
853 -rm -f ./$(DEPDIR)/present_fence.Plo
909 -rm -f ./$(DEPDIR)/present_fence.Plo
H A Dpresent_event.c183 present_send_idle_notify(WindowPtr window, CARD32 serial, PixmapPtr pixmap, struct present_fence *i… in present_send_idle_notify()