SDL_GetWindowSize

Get the size of a window's client area.

The window pixel size may differ from its window coordinate size if the window is on a high pixel density display. Use SDL_GetWindowSizeInPixels() or SDL_GetRenderOutputSize() to get the real client area size in pixels.

extern (C) nothrow @nogc extern
bool
SDL_GetWindowSize
(,
int* w
,
int* h
)

Parameters

window SDL_Window*

the window to query the width and height from.

w int*

a pointer filled in with the width of the window, may be NULL.

h int*

a pointer filled in with the height of the window, may be NULL.

Return Value

Type: bool

true on success or false on failure; call SDL_GetError() for more information.

Threadsafety: This function should only be called on the main thread.

See Also

Meta