#pragma section-numbers off #pragma disable-camelcase = SDL_GetDisplayBounds = Use this function to get the desktop area represented by a display, with the primary display located at 0,0. <> == Syntax == {{{#!highlight cpp int SDL_GetDisplayBounds(int displayIndex, SDL_Rect* rect) }}} == Function Parameters == ||'''displayIndex'''||the index of the display to query|| ||'''rect'''||the [[SDL_Rect]] structure filled in with the display bounds|| == Return Value == Returns 0 on success or a negative error code on failure; call [[SDL_GetError]]() for more information. == Code Examples == {{{#!highlight cpp SDL_Rect r; if (SDL_GetDisplayBounds(0, &r) != 0) { SDL_Log("SDL_GetDisplayBounds failed: %s", SDL_GetError()); return 1; } }}} == Remarks == ''You can add useful comments here'' == Related Functions == .[[SDL_GetNumVideoDisplays]] ---- [[CategoryAPI]], [[CategoryVideo]]