Table of Contents

Delegate EventFilter

Namespace
Sdl3Sharp
Assembly
Sdl3Sharp.dll

Represents a method that filters events in the event queue

public delegate bool EventFilter(ref Event @event)

Parameters

event Event

The event to examine

Returns

bool

true to permit the event, false to reject it

Remarks

SDL may call filter delegates at any time from any thread; the application is responsible for locking resources that need to be protected.