logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_FilterEvents - Run a specific filter function on the current event queue, removing any events for

Availability

       This function is available since SDL 3.2.0.

Description

       See SDL_SetEventFilter() for more information. Unlike SDL_SetEventFilter(), this function does not change
       the filter permanently, it only uses the supplied filter until this function returns.

Function Parameters

filter the SDL_EventFilter function to call when an event happens.

       userdata
              a pointer that is passed to filter.

Name

       SDL_FilterEvents  -  Run  a  specific filter function on the current event queue, removing any events for
       which the filter returns false.

See Also

SDL_GetEventFilter(3), SDL_SetEventFilter(3)

Simple Directmedia Layer                           SDL 3.2.20                                SDL_FilterEvents(3)

Synopsis

#include<SDL3/SDL_events.h>voidSDL_FilterEvents(SDL_EventFilterfilter,void*userdata);

Thread Safety

       It is safe to call this function from any thread.

See Also