Home
last modified time | relevance | path

Searched refs:ALLEGRO_EVENT_QUEUE (Results 1 – 25 of 127) sorted by relevance

123456

/dports/devel/allegro5/allegro5-5.2.7.0/include/allegro5/
H A Devents.h243 typedef struct ALLEGRO_EVENT_QUEUE ALLEGRO_EVENT_QUEUE; typedef
245 AL_FUNC(ALLEGRO_EVENT_QUEUE*, al_create_event_queue, (void));
246 AL_FUNC(void, al_destroy_event_queue, (ALLEGRO_EVENT_QUEUE*));
247 AL_FUNC(bool, al_is_event_source_registered, (ALLEGRO_EVENT_QUEUE *,
251 AL_FUNC(void, al_pause_event_queue, (ALLEGRO_EVENT_QUEUE*, bool));
253 AL_FUNC(bool, al_is_event_queue_empty, (ALLEGRO_EVENT_QUEUE*));
256 AL_FUNC(bool, al_drop_next_event, (ALLEGRO_EVENT_QUEUE*));
257 AL_FUNC(void, al_flush_event_queue, (ALLEGRO_EVENT_QUEUE*));
258 AL_FUNC(void, al_wait_for_event, (ALLEGRO_EVENT_QUEUE*,
260 AL_FUNC(bool, al_wait_for_event_timed, (ALLEGRO_EVENT_QUEUE*,
[all …]
/dports/devel/allegro5/allegro5-5.2.7.0/src/
H A Devents.c36 struct ALLEGRO_EVENT_QUEUE struct
57 static bool do_wait_for_event(ALLEGRO_EVENT_QUEUE *queue, argument
90 ALLEGRO_EVENT_QUEUE *al_create_event_queue(void) in al_create_event_queue()
92 ALLEGRO_EVENT_QUEUE *queue = al_malloc(sizeof *queue); in al_create_event_queue()
120 void al_destroy_event_queue(ALLEGRO_EVENT_QUEUE *queue) in al_destroy_event_queue()
161 void al_register_event_source(ALLEGRO_EVENT_QUEUE *queue, in al_register_event_source()
248 bool al_is_event_queue_empty(ALLEGRO_EVENT_QUEUE *queue) in al_is_event_queue_empty()
346 bool al_drop_next_event(ALLEGRO_EVENT_QUEUE *queue) in al_drop_next_event()
369 void al_flush_event_queue(ALLEGRO_EVENT_QUEUE *queue) in al_flush_event_queue()
427 bool al_wait_for_event_timed(ALLEGRO_EVENT_QUEUE *queue, in al_wait_for_event_timed()
[all …]
H A Devtsrc.c44 _al_vector_init(&this->queues, sizeof(ALLEGRO_EVENT_QUEUE *)); in _al_event_source_init()
61 ALLEGRO_EVENT_QUEUE **slot = _al_vector_ref_back(&this->queues); in _al_event_source_free()
103 ALLEGRO_EVENT_QUEUE *queue) in _al_event_source_on_registration_to_queue()
110 ALLEGRO_EVENT_QUEUE **slot = _al_vector_alloc_back(&this->queues); in _al_event_source_on_registration_to_queue()
123 ALLEGRO_EVENT_QUEUE *queue) in _al_event_source_on_unregistration_from_queue()
182 ALLEGRO_EVENT_QUEUE **slot; in _al_event_source_emit_event()
/dports/devel/allegro5/allegro5-5.2.7.0/examples/
H A Dex_timedwait.c12 static void test_relative_timeout(ALLEGRO_EVENT_QUEUE *queue);
13 static void test_absolute_timeout(ALLEGRO_EVENT_QUEUE *queue);
20 ALLEGRO_EVENT_QUEUE *queue; in main()
47 static void test_relative_timeout(ALLEGRO_EVENT_QUEUE *queue) in test_relative_timeout()
77 static void test_absolute_timeout(ALLEGRO_EVENT_QUEUE *queue) in test_absolute_timeout()
H A Dex_vsync.c26 static bool display_warning(ALLEGRO_EVENT_QUEUE *queue, ALLEGRO_FONT *font) in display_warning()
79 ALLEGRO_EVENT_QUEUE *queue; in main()
H A Dex_disable_screensaver.c11 ALLEGRO_EVENT_QUEUE *events; in main()
H A Dex_winfull.c8 ALLEGRO_EVENT_QUEUE *events; in main()
H A Dex_dualies.c11 ALLEGRO_EVENT_QUEUE *queue; in go()
H A Dex_cpu.c17 ALLEGRO_EVENT_QUEUE *queue; in main()
H A Dex_icon2.c25 ALLEGRO_EVENT_QUEUE *queue; in main()
H A Dex_inject_events.c18 ALLEGRO_EVENT_QUEUE *queue; in main()
H A Dex_timer_pause.c24 ALLEGRO_EVENT_QUEUE *queue = NULL; in main()
H A Dex_icon.c11 ALLEGRO_EVENT_QUEUE *queue; in main()
H A Dex_saw.c16 ALLEGRO_EVENT_QUEUE *queue; in saw()
H A Dex_window_title.c25 ALLEGRO_EVENT_QUEUE *queue; in main()
H A Dex_resize.c27 ALLEGRO_EVENT_QUEUE *events; in main()
H A Dex_clipboard.c17 ALLEGRO_EVENT_QUEUE *queue; in main()
H A Dex_keyboard_events.c20 ALLEGRO_EVENT_QUEUE *event_queue;
H A Dex_resize2.c19 ALLEGRO_EVENT_QUEUE *queue; in main()
H A Dex_stream_file.c83 ALLEGRO_EVENT_QUEUE* queue = al_create_event_queue(); in main()
/dports/devel/allegro5/allegro5-5.2.7.0/include/allegro5/internal/
H A Daintern_events.h34 void _al_event_source_on_registration_to_queue(ALLEGRO_EVENT_SOURCE*, ALLEGRO_EVENT_QUEUE*);
35 void _al_event_source_on_unregistration_from_queue(ALLEGRO_EVENT_SOURCE*, ALLEGRO_EVENT_QUEUE*);
39 void _al_event_queue_push_event(ALLEGRO_EVENT_QUEUE*, const ALLEGRO_EVENT*);
/dports/devel/allegro5/allegro5-5.2.7.0/demos/cosmic_protector/include/
H A DDisplayResource.hpp11 ALLEGRO_EVENT_QUEUE *getEventQueue(void);
15 ALLEGRO_EVENT_QUEUE *events;
H A DInput.hpp32 ALLEGRO_EVENT_QUEUE *input_queue;
/dports/devel/allegro5/allegro5-5.2.7.0/demos/skater/src/
H A Dframework.h7 extern ALLEGRO_EVENT_QUEUE *event_queue;
/dports/devel/allegro5/allegro5-5.2.7.0/demos/cosmic_protector/src/
H A DDisplayResource.cpp66 ALLEGRO_EVENT_QUEUE *DisplayResource::getEventQueue(void) in getEventQueue()

123456