MCPcopy Create free account
hub / github.com/RevoSucks/BM64Recomp / queue_event

Method queue_event

src/ui/ui_state.cpp:459–461  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

457moodycamel::ConcurrentQueue<SDL_Event> ui_event_queue{};
458
459void recompui::queue_event(const SDL_Event& event) {
460 ui_event_queue.enqueue(event);
461}
462
463bool recompui::try_deque_event(SDL_Event& out) {
464 return ui_event_queue.try_dequeue(out);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected