(This is the documentation for SDL3, which is under heavy development and the API is changing! SDL2 is the current stable version!)

SDL_HitTest

Callback used for hit-testing.

Header File

Defined in <SDL3/SDL_video.h>

Syntax

typedef SDL_HitTestResult (SDLCALL *SDL_HitTest)(SDL_Window *win, const SDL_Point *area, void *data);

Function Parameters

win the SDL_Window where hit-testing was set on
area an SDL_Point which should be hit-tested
data what was passed as callback_data to SDL_SetWindowHitTest()

Return Value

Returns an SDL_HitTestResult value.

See Also


CategoryAPI, CategoryAPIDatatype, CategoryVideo