sdlFlushEvent function

void sdlFlushEvent(
  1. int type
)

Clear events of a specific type from the event queue.

This will unconditionally remove any events from the queue that match type. If you need to remove a range of event types, use SDL_FlushEvents() instead.

It's also normal to just ignore events you don't care about in your event loop without calling this function.

This function only affects currently queued events. If you want to make sure that all pending OS events are flushed, you can call SDL_PumpEvents() on the main thread immediately before the flush call.

\param type the type of event to be cleared; see SDL_EventType for details

\since This function is available since SDL 2.0.0.

\sa SDL_FlushEvents

extern DECLSPEC void SDLCALL SDL_FlushEvent(Uint32 type)

Implementation

void sdlFlushEvent(int type) {
  final sdlFlushEventLookupFunction = libSdl2.lookupFunction<
      Void Function(Uint32 type), void Function(int type)>('SDL_FlushEvent');
  return sdlFlushEventLookupFunction(type);
}