SDL_video.h 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2023 Sam Lantinga <slouken@libsdl.org>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. /**
  19. * \file SDL_video.h
  20. *
  21. * Header file for SDL video functions.
  22. */
  23. #ifndef SDL_video_h_
  24. #define SDL_video_h_
  25. #include <SDL3/SDL_stdinc.h>
  26. #include <SDL3/SDL_pixels.h>
  27. #include <SDL3/SDL_rect.h>
  28. #include <SDL3/SDL_surface.h>
  29. #include <SDL3/SDL_begin_code.h>
  30. /* Set up for C function definitions, even when using C++ */
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. typedef Uint32 SDL_WindowID;
  35. /**
  36. * \brief The structure that defines a display mode
  37. *
  38. * \sa SDL_GetNumDisplayModes()
  39. * \sa SDL_GetDisplayMode()
  40. * \sa SDL_GetDesktopDisplayMode()
  41. * \sa SDL_GetCurrentDisplayMode()
  42. * \sa SDL_GetClosestDisplayMode()
  43. * \sa SDL_SetWindowDisplayMode()
  44. * \sa SDL_GetWindowDisplayMode()
  45. */
  46. typedef struct
  47. {
  48. Uint32 format; /**< pixel format */
  49. int pixel_w; /**< width in pixels (used for creating back buffers) */
  50. int pixel_h; /**< height in pixels (used for creating back buffers) */
  51. int screen_w; /**< width in screen coordinates (used for creating windows) */
  52. int screen_h; /**< height in screen coordinates (used for creating windows) */
  53. float display_scale; /**< scale converting screen coordinates to pixels (e.g. a 2560x1440 screen size mode with 1.5 scale would have 3840x2160 pixels) */
  54. float refresh_rate; /**< refresh rate (or zero for unspecified) */
  55. void *driverdata; /**< driver-specific data, initialize to 0 */
  56. } SDL_DisplayMode;
  57. /**
  58. * \brief The type used to identify a window
  59. *
  60. * \sa SDL_CreateWindow()
  61. * \sa SDL_CreateWindowFrom()
  62. * \sa SDL_DestroyWindow()
  63. * \sa SDL_FlashWindow()
  64. * \sa SDL_GetWindowData()
  65. * \sa SDL_GetWindowFlags()
  66. * \sa SDL_GetWindowGrab()
  67. * \sa SDL_GetWindowKeyboardGrab()
  68. * \sa SDL_GetWindowMouseGrab()
  69. * \sa SDL_GetWindowPosition()
  70. * \sa SDL_GetWindowSize()
  71. * \sa SDL_GetWindowTitle()
  72. * \sa SDL_HideWindow()
  73. * \sa SDL_MaximizeWindow()
  74. * \sa SDL_MinimizeWindow()
  75. * \sa SDL_RaiseWindow()
  76. * \sa SDL_RestoreWindow()
  77. * \sa SDL_SetWindowData()
  78. * \sa SDL_SetWindowFullscreen()
  79. * \sa SDL_SetWindowGrab()
  80. * \sa SDL_SetWindowKeyboardGrab()
  81. * \sa SDL_SetWindowMouseGrab()
  82. * \sa SDL_SetWindowIcon()
  83. * \sa SDL_SetWindowPosition()
  84. * \sa SDL_SetWindowSize()
  85. * \sa SDL_SetWindowBordered()
  86. * \sa SDL_SetWindowResizable()
  87. * \sa SDL_SetWindowTitle()
  88. * \sa SDL_ShowWindow()
  89. */
  90. typedef struct SDL_Window SDL_Window;
  91. /**
  92. * \brief The flags on a window
  93. *
  94. * \sa SDL_GetWindowFlags()
  95. */
  96. typedef enum
  97. {
  98. SDL_WINDOW_FULLSCREEN_EXCLUSIVE = 0x00000001, /**< window is in fullscreen exclusive mode */
  99. SDL_WINDOW_OPENGL = 0x00000002, /**< window usable with OpenGL context */
  100. /* 0x00000004 was SDL_WINDOW_SHOWN in SDL2, please reserve this bit for sdl2-compat. */
  101. SDL_WINDOW_HIDDEN = 0x00000008, /**< window is not visible */
  102. SDL_WINDOW_BORDERLESS = 0x00000010, /**< no window decoration */
  103. SDL_WINDOW_RESIZABLE = 0x00000020, /**< window can be resized */
  104. SDL_WINDOW_MINIMIZED = 0x00000040, /**< window is minimized */
  105. SDL_WINDOW_MAXIMIZED = 0x00000080, /**< window is maximized */
  106. SDL_WINDOW_MOUSE_GRABBED = 0x00000100, /**< window has grabbed mouse input */
  107. SDL_WINDOW_INPUT_FOCUS = 0x00000200, /**< window has input focus */
  108. SDL_WINDOW_MOUSE_FOCUS = 0x00000400, /**< window has mouse focus */
  109. SDL_WINDOW_FULLSCREEN_DESKTOP = 0x00001000, /**< window is in fullscreen desktop mode */
  110. SDL_WINDOW_FOREIGN = 0x00000800, /**< window not created by SDL */
  111. /* 0x00002000 was SDL_WINDOW_ALLOW_HIGHDPI in SDL2, please reserve this bit for sdl2-compat. */
  112. SDL_WINDOW_MOUSE_CAPTURE = 0x00004000, /**< window has mouse captured (unrelated to MOUSE_GRABBED) */
  113. SDL_WINDOW_ALWAYS_ON_TOP = 0x00008000, /**< window should always be above others */
  114. SDL_WINDOW_SKIP_TASKBAR = 0x00010000, /**< window should not be added to the taskbar */
  115. SDL_WINDOW_UTILITY = 0x00020000, /**< window should be treated as a utility window */
  116. SDL_WINDOW_TOOLTIP = 0x00040000, /**< window should be treated as a tooltip */
  117. SDL_WINDOW_POPUP_MENU = 0x00080000, /**< window should be treated as a popup menu */
  118. SDL_WINDOW_KEYBOARD_GRABBED = 0x00100000, /**< window has grabbed keyboard input */
  119. SDL_WINDOW_VULKAN = 0x10000000, /**< window usable for Vulkan surface */
  120. SDL_WINDOW_METAL = 0x20000000, /**< window usable for Metal view */
  121. } SDL_WindowFlags;
  122. #define SDL_WINDOW_FULLSCREEN_MASK (SDL_WINDOW_FULLSCREEN_EXCLUSIVE | SDL_WINDOW_FULLSCREEN_DESKTOP)
  123. /**
  124. * \brief Used to indicate that you don't care what the window position is.
  125. */
  126. #define SDL_WINDOWPOS_UNDEFINED_MASK 0x1FFF0000u
  127. #define SDL_WINDOWPOS_UNDEFINED_DISPLAY(X) (SDL_WINDOWPOS_UNDEFINED_MASK|(X))
  128. #define SDL_WINDOWPOS_UNDEFINED SDL_WINDOWPOS_UNDEFINED_DISPLAY(0)
  129. #define SDL_WINDOWPOS_ISUNDEFINED(X) \
  130. (((X)&0xFFFF0000) == SDL_WINDOWPOS_UNDEFINED_MASK)
  131. /**
  132. * \brief Used to indicate that the window position should be centered.
  133. */
  134. #define SDL_WINDOWPOS_CENTERED_MASK 0x2FFF0000u
  135. #define SDL_WINDOWPOS_CENTERED_DISPLAY(X) (SDL_WINDOWPOS_CENTERED_MASK|(X))
  136. #define SDL_WINDOWPOS_CENTERED SDL_WINDOWPOS_CENTERED_DISPLAY(0)
  137. #define SDL_WINDOWPOS_ISCENTERED(X) \
  138. (((X)&0xFFFF0000) == SDL_WINDOWPOS_CENTERED_MASK)
  139. /**
  140. * \brief Display orientation
  141. */
  142. typedef enum
  143. {
  144. SDL_ORIENTATION_UNKNOWN, /**< The display orientation can't be determined */
  145. SDL_ORIENTATION_LANDSCAPE, /**< The display is in landscape mode, with the right side up, relative to portrait mode */
  146. SDL_ORIENTATION_LANDSCAPE_FLIPPED, /**< The display is in landscape mode, with the left side up, relative to portrait mode */
  147. SDL_ORIENTATION_PORTRAIT, /**< The display is in portrait mode */
  148. SDL_ORIENTATION_PORTRAIT_FLIPPED /**< The display is in portrait mode, upside down */
  149. } SDL_DisplayOrientation;
  150. /**
  151. * \brief Window flash operation
  152. */
  153. typedef enum
  154. {
  155. SDL_FLASH_CANCEL, /**< Cancel any window flash state */
  156. SDL_FLASH_BRIEFLY, /**< Flash the window briefly to get attention */
  157. SDL_FLASH_UNTIL_FOCUSED /**< Flash the window until it gets focus */
  158. } SDL_FlashOperation;
  159. /**
  160. * \brief An opaque handle to an OpenGL context.
  161. */
  162. typedef void *SDL_GLContext;
  163. /**
  164. * \brief Opaque EGL types.
  165. */
  166. typedef void *SDL_EGLDisplay;
  167. typedef void *SDL_EGLConfig;
  168. typedef void *SDL_EGLSurface;
  169. typedef intptr_t SDL_EGLAttrib;
  170. typedef int SDL_EGLint;
  171. /**
  172. * \brief EGL attribute initialization callback types.
  173. */
  174. typedef SDL_EGLAttrib *(SDLCALL *SDL_EGLAttribArrayCallback)(void);
  175. typedef SDL_EGLint *(SDLCALL *SDL_EGLIntArrayCallback)(void);
  176. /**
  177. * \brief OpenGL configuration attributes
  178. */
  179. typedef enum
  180. {
  181. SDL_GL_RED_SIZE,
  182. SDL_GL_GREEN_SIZE,
  183. SDL_GL_BLUE_SIZE,
  184. SDL_GL_ALPHA_SIZE,
  185. SDL_GL_BUFFER_SIZE,
  186. SDL_GL_DOUBLEBUFFER,
  187. SDL_GL_DEPTH_SIZE,
  188. SDL_GL_STENCIL_SIZE,
  189. SDL_GL_ACCUM_RED_SIZE,
  190. SDL_GL_ACCUM_GREEN_SIZE,
  191. SDL_GL_ACCUM_BLUE_SIZE,
  192. SDL_GL_ACCUM_ALPHA_SIZE,
  193. SDL_GL_STEREO,
  194. SDL_GL_MULTISAMPLEBUFFERS,
  195. SDL_GL_MULTISAMPLESAMPLES,
  196. SDL_GL_ACCELERATED_VISUAL,
  197. SDL_GL_RETAINED_BACKING,
  198. SDL_GL_CONTEXT_MAJOR_VERSION,
  199. SDL_GL_CONTEXT_MINOR_VERSION,
  200. SDL_GL_CONTEXT_FLAGS,
  201. SDL_GL_CONTEXT_PROFILE_MASK,
  202. SDL_GL_SHARE_WITH_CURRENT_CONTEXT,
  203. SDL_GL_FRAMEBUFFER_SRGB_CAPABLE,
  204. SDL_GL_CONTEXT_RELEASE_BEHAVIOR,
  205. SDL_GL_CONTEXT_RESET_NOTIFICATION,
  206. SDL_GL_CONTEXT_NO_ERROR,
  207. SDL_GL_FLOATBUFFERS,
  208. SDL_GL_EGL_PLATFORM
  209. } SDL_GLattr;
  210. typedef enum
  211. {
  212. SDL_GL_CONTEXT_PROFILE_CORE = 0x0001,
  213. SDL_GL_CONTEXT_PROFILE_COMPATIBILITY = 0x0002,
  214. SDL_GL_CONTEXT_PROFILE_ES = 0x0004 /**< GLX_CONTEXT_ES2_PROFILE_BIT_EXT */
  215. } SDL_GLprofile;
  216. typedef enum
  217. {
  218. SDL_GL_CONTEXT_DEBUG_FLAG = 0x0001,
  219. SDL_GL_CONTEXT_FORWARD_COMPATIBLE_FLAG = 0x0002,
  220. SDL_GL_CONTEXT_ROBUST_ACCESS_FLAG = 0x0004,
  221. SDL_GL_CONTEXT_RESET_ISOLATION_FLAG = 0x0008
  222. } SDL_GLcontextFlag;
  223. typedef enum
  224. {
  225. SDL_GL_CONTEXT_RELEASE_BEHAVIOR_NONE = 0x0000,
  226. SDL_GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH = 0x0001
  227. } SDL_GLcontextReleaseFlag;
  228. typedef enum
  229. {
  230. SDL_GL_CONTEXT_RESET_NO_NOTIFICATION = 0x0000,
  231. SDL_GL_CONTEXT_RESET_LOSE_CONTEXT = 0x0001
  232. } SDL_GLContextResetNotification;
  233. /* Function prototypes */
  234. /**
  235. * Get the number of video drivers compiled into SDL.
  236. *
  237. * \returns a number >= 1 on success or a negative error code on failure; call
  238. * SDL_GetError() for more information.
  239. *
  240. * \since This function is available since SDL 3.0.0.
  241. *
  242. * \sa SDL_GetVideoDriver
  243. */
  244. extern DECLSPEC int SDLCALL SDL_GetNumVideoDrivers(void);
  245. /**
  246. * Get the name of a built in video driver.
  247. *
  248. * The video drivers are presented in the order in which they are normally
  249. * checked during initialization.
  250. *
  251. * \param index the index of a video driver
  252. * \returns the name of the video driver with the given **index**.
  253. *
  254. * \since This function is available since SDL 3.0.0.
  255. *
  256. * \sa SDL_GetNumVideoDrivers
  257. */
  258. extern DECLSPEC const char *SDLCALL SDL_GetVideoDriver(int index);
  259. /**
  260. * Get the name of the currently initialized video driver.
  261. *
  262. * \returns the name of the current video driver or NULL if no driver has been
  263. * initialized.
  264. *
  265. * \since This function is available since SDL 3.0.0.
  266. *
  267. * \sa SDL_GetNumVideoDrivers
  268. * \sa SDL_GetVideoDriver
  269. */
  270. extern DECLSPEC const char *SDLCALL SDL_GetCurrentVideoDriver(void);
  271. /**
  272. * Get the number of available video displays.
  273. *
  274. * \returns a number >= 1 or a negative error code on failure; call
  275. * SDL_GetError() for more information.
  276. *
  277. * \since This function is available since SDL 3.0.0.
  278. *
  279. * \sa SDL_GetDisplayBounds
  280. */
  281. extern DECLSPEC int SDLCALL SDL_GetNumVideoDisplays(void);
  282. /**
  283. * Get the name of a display in UTF-8 encoding.
  284. *
  285. * \param displayIndex the index of display from which the name should be
  286. * queried
  287. * \returns the name of a display or NULL for an invalid display index or
  288. * failure; call SDL_GetError() for more information.
  289. *
  290. * \since This function is available since SDL 3.0.0.
  291. *
  292. * \sa SDL_GetNumVideoDisplays
  293. */
  294. extern DECLSPEC const char *SDLCALL SDL_GetDisplayName(int displayIndex);
  295. /**
  296. * Get the desktop area represented by a display, in screen coordinates.
  297. *
  298. * The primary display (`displayIndex` zero) is always located at 0,0.
  299. *
  300. * \param displayIndex the index of the display to query
  301. * \param rect the SDL_Rect structure filled in with the display bounds
  302. * \returns 0 on success or a negative error code on failure; call
  303. * SDL_GetError() for more information.
  304. *
  305. * \since This function is available since SDL 3.0.0.
  306. *
  307. * \sa SDL_GetNumVideoDisplays
  308. */
  309. extern DECLSPEC int SDLCALL SDL_GetDisplayBounds(int displayIndex, SDL_Rect *rect);
  310. /**
  311. * Get the usable desktop area represented by a display, in screen
  312. * coordinates.
  313. *
  314. * The primary display (`displayIndex` zero) is always located at 0,0.
  315. *
  316. * This is the same area as SDL_GetDisplayBounds() reports, but with portions
  317. * reserved by the system removed. For example, on Apple's macOS, this
  318. * subtracts the area occupied by the menu bar and dock.
  319. *
  320. * Setting a window to be fullscreen generally bypasses these unusable areas,
  321. * so these are good guidelines for the maximum space available to a
  322. * non-fullscreen window.
  323. *
  324. * The parameter `rect` is ignored if it is NULL.
  325. *
  326. * This function also returns -1 if the parameter `displayIndex` is out of
  327. * range.
  328. *
  329. * \param displayIndex the index of the display to query the usable bounds
  330. * from
  331. * \param rect the SDL_Rect structure filled in with the display bounds
  332. * \returns 0 on success or a negative error code on failure; call
  333. * SDL_GetError() for more information.
  334. *
  335. * \since This function is available since SDL 3.0.0.
  336. *
  337. * \sa SDL_GetDisplayBounds
  338. * \sa SDL_GetNumVideoDisplays
  339. */
  340. extern DECLSPEC int SDLCALL SDL_GetDisplayUsableBounds(int displayIndex, SDL_Rect *rect);
  341. /**
  342. * Get the dots/pixels-per-inch for a display.
  343. *
  344. * Diagonal, horizontal and vertical DPI can all be optionally returned if the
  345. * appropriate parameter is non-NULL.
  346. *
  347. * A failure of this function usually means that either no DPI information is
  348. * available or the `displayIndex` is out of range.
  349. *
  350. * **WARNING**: This reports the DPI that the hardware reports, and it is not
  351. * always reliable! It is almost always better to use SDL_GetWindowSize() to
  352. * find the window size, which might be in logical points instead of pixels,
  353. * and then SDL_GetWindowSizeInPixels(), SDL_GL_GetDrawableSize(),
  354. * SDL_Vulkan_GetDrawableSize(), SDL_Metal_GetDrawableSize(), or
  355. * SDL_GetRendererOutputSize(), and compare the two values to get an actual
  356. * scaling value between the two. We will be rethinking how high-dpi details
  357. * should be managed in SDL3 to make things more consistent, reliable, and
  358. * clear.
  359. *
  360. * \param displayIndex the index of the display from which DPI information
  361. * should be queried
  362. * \param ddpi a pointer filled in with the diagonal DPI of the display; may
  363. * be NULL
  364. * \param hdpi a pointer filled in with the horizontal DPI of the display; may
  365. * be NULL
  366. * \param vdpi a pointer filled in with the vertical DPI of the display; may
  367. * be NULL
  368. * \returns 0 on success or a negative error code on failure; call
  369. * SDL_GetError() for more information.
  370. *
  371. * \since This function is available since SDL 3.0.0.
  372. *
  373. * \sa SDL_GetNumVideoDisplays
  374. */
  375. extern DECLSPEC int SDLCALL SDL_GetDisplayPhysicalDPI(int displayIndex, float *ddpi, float *hdpi, float *vdpi);
  376. /**
  377. * Get the orientation of a display.
  378. *
  379. * \param displayIndex the index of the display to query
  380. * \returns The SDL_DisplayOrientation enum value of the display, or
  381. * `SDL_ORIENTATION_UNKNOWN` if it isn't available.
  382. *
  383. * \since This function is available since SDL 3.0.0.
  384. *
  385. * \sa SDL_GetNumVideoDisplays
  386. */
  387. extern DECLSPEC SDL_DisplayOrientation SDLCALL SDL_GetDisplayOrientation(int displayIndex);
  388. /**
  389. * Get the number of available display modes.
  390. *
  391. * The `displayIndex` needs to be in the range from 0 to
  392. * SDL_GetNumVideoDisplays() - 1.
  393. *
  394. * \param displayIndex the index of the display to query
  395. * \returns a number >= 1 on success or a negative error code on failure; call
  396. * SDL_GetError() for more information.
  397. *
  398. * \since This function is available since SDL 3.0.0.
  399. *
  400. * \sa SDL_GetDisplayMode
  401. * \sa SDL_GetNumVideoDisplays
  402. */
  403. extern DECLSPEC int SDLCALL SDL_GetNumDisplayModes(int displayIndex);
  404. /**
  405. * Get information about a specific display mode.
  406. *
  407. * The display modes are sorted in this priority:
  408. *
  409. * - width -> largest to smallest
  410. * - height -> largest to smallest
  411. * - display_scale -> smallest to largest
  412. * - bits per pixel -> more colors to fewer colors
  413. * - packed pixel layout -> largest to smallest
  414. * - refresh rate -> highest to lowest
  415. *
  416. * \param displayIndex the index of the display to query
  417. * \param modeIndex the index of the display mode to query
  418. * \param mode an SDL_DisplayMode structure filled in with the mode at
  419. * `modeIndex`
  420. * \returns 0 on success or a negative error code on failure; call
  421. * SDL_GetError() for more information.
  422. *
  423. * \since This function is available since SDL 3.0.0.
  424. *
  425. * \sa SDL_GetNumDisplayModes
  426. */
  427. extern DECLSPEC int SDLCALL SDL_GetDisplayMode(int displayIndex, int modeIndex, SDL_DisplayMode *mode);
  428. /**
  429. * Get information about the desktop's display mode.
  430. *
  431. * There's a difference between this function and SDL_GetCurrentDisplayMode()
  432. * when SDL runs fullscreen and has changed the resolution. In that case this
  433. * function will return the previous native display mode, and not the current
  434. * display mode.
  435. *
  436. * \param displayIndex the index of the display to query
  437. * \param mode an SDL_DisplayMode structure filled in with the current display
  438. * mode
  439. * \returns 0 on success or a negative error code on failure; call
  440. * SDL_GetError() for more information.
  441. *
  442. * \since This function is available since SDL 3.0.0.
  443. *
  444. * \sa SDL_GetCurrentDisplayMode
  445. * \sa SDL_GetDisplayMode
  446. * \sa SDL_SetWindowDisplayMode
  447. */
  448. extern DECLSPEC int SDLCALL SDL_GetDesktopDisplayMode(int displayIndex, SDL_DisplayMode *mode);
  449. /**
  450. * Get information about the current display mode.
  451. *
  452. * There's a difference between this function and SDL_GetDesktopDisplayMode()
  453. * when SDL runs fullscreen and has changed the resolution. In that case this
  454. * function will return the current display mode, and not the previous native
  455. * display mode.
  456. *
  457. * \param displayIndex the index of the display to query
  458. * \param mode an SDL_DisplayMode structure filled in with the current display
  459. * mode
  460. * \returns 0 on success or a negative error code on failure; call
  461. * SDL_GetError() for more information.
  462. *
  463. * \since This function is available since SDL 3.0.0.
  464. *
  465. * \sa SDL_GetDesktopDisplayMode
  466. * \sa SDL_GetDisplayMode
  467. * \sa SDL_GetNumVideoDisplays
  468. * \sa SDL_SetWindowDisplayMode
  469. */
  470. extern DECLSPEC int SDLCALL SDL_GetCurrentDisplayMode(int displayIndex, SDL_DisplayMode *mode);
  471. /**
  472. * Get the closest match to the requested display mode.
  473. *
  474. * The available display modes are scanned and `closest` is filled in with the
  475. * closest mode matching the requested mode and returned. The mode format and
  476. * refresh rate default to the desktop mode if they are set to 0. The modes
  477. * are scanned with size being first priority, format being second priority,
  478. * and finally checking the refresh rate. If all the available modes are too
  479. * small, then NULL is returned.
  480. *
  481. * \param displayIndex the index of the display to query
  482. * \param mode an SDL_DisplayMode structure containing the desired display
  483. * mode
  484. * \param closest an SDL_DisplayMode structure filled in with the closest
  485. * match of the available display modes
  486. * \returns the passed in value `closest` or NULL if no matching video mode
  487. * was available; call SDL_GetError() for more information.
  488. *
  489. * \since This function is available since SDL 3.0.0.
  490. *
  491. * \sa SDL_GetDisplayMode
  492. * \sa SDL_GetNumDisplayModes
  493. */
  494. extern DECLSPEC SDL_DisplayMode *SDLCALL SDL_GetClosestDisplayMode(int displayIndex, const SDL_DisplayMode *mode, SDL_DisplayMode *closest);
  495. /**
  496. * Get the index of the display containing a point
  497. *
  498. * \param point the point to query
  499. * \returns the index of the display containing the point or a negative error
  500. * code on failure; call SDL_GetError() for more information.
  501. *
  502. * \since This function is available since SDL 3.0.0.
  503. *
  504. * \sa SDL_GetDisplayBounds
  505. * \sa SDL_GetNumVideoDisplays
  506. */
  507. extern DECLSPEC int SDLCALL SDL_GetDisplayIndexForPoint(const SDL_Point *point);
  508. /**
  509. * Get the index of the display primarily containing a rect
  510. *
  511. * \param rect the rect to query
  512. * \returns the index of the display entirely containing the rect or closest
  513. * to the center of the rect on success or a negative error code on
  514. * failure; call SDL_GetError() for more information.
  515. *
  516. * \since This function is available since SDL 3.0.0.
  517. *
  518. * \sa SDL_GetDisplayBounds
  519. * \sa SDL_GetNumVideoDisplays
  520. */
  521. extern DECLSPEC int SDLCALL SDL_GetDisplayIndexForRect(const SDL_Rect *rect);
  522. /**
  523. * Get the index of the display associated with a window.
  524. *
  525. * \param window the window to query
  526. * \returns the index of the display containing the center of the window on
  527. * success or a negative error code on failure; call SDL_GetError()
  528. * for more information.
  529. *
  530. * \since This function is available since SDL 3.0.0.
  531. *
  532. * \sa SDL_GetDisplayBounds
  533. * \sa SDL_GetNumVideoDisplays
  534. */
  535. extern DECLSPEC int SDLCALL SDL_GetWindowDisplayIndex(SDL_Window *window);
  536. /**
  537. * Set the display mode to use when a window is visible at fullscreen.
  538. *
  539. * This only affects the display mode used when the window is fullscreen. To
  540. * change the window size when the window is not fullscreen, use
  541. * SDL_SetWindowSize().
  542. *
  543. * \param window the window to affect
  544. * \param mode the SDL_DisplayMode structure representing the mode to use, or
  545. * NULL to use the window's dimensions and the desktop's format
  546. * and refresh rate
  547. * \returns 0 on success or a negative error code on failure; call
  548. * SDL_GetError() for more information.
  549. *
  550. * \since This function is available since SDL 3.0.0.
  551. *
  552. * \sa SDL_GetWindowDisplayMode
  553. * \sa SDL_SetWindowFullscreen
  554. */
  555. extern DECLSPEC int SDLCALL SDL_SetWindowDisplayMode(SDL_Window *window, const SDL_DisplayMode *mode);
  556. /**
  557. * Query the display mode to use when a window is visible at fullscreen.
  558. *
  559. * \param window the window to query
  560. * \param mode an SDL_DisplayMode structure filled in with the fullscreen
  561. * display mode
  562. * \returns 0 on success or a negative error code on failure; call
  563. * SDL_GetError() for more information.
  564. *
  565. * \since This function is available since SDL 3.0.0.
  566. *
  567. * \sa SDL_SetWindowDisplayMode
  568. * \sa SDL_SetWindowFullscreen
  569. */
  570. extern DECLSPEC int SDLCALL SDL_GetWindowDisplayMode(SDL_Window *window, SDL_DisplayMode *mode);
  571. /**
  572. * Get the raw ICC profile data for the screen the window is currently on.
  573. *
  574. * Data returned should be freed with SDL_free.
  575. *
  576. * \param window the window to query
  577. * \param size the size of the ICC profile
  578. * \returns the raw ICC profile data on success or NULL on failure; call
  579. * SDL_GetError() for more information.
  580. *
  581. * \since This function is available since SDL 3.0.0.
  582. */
  583. extern DECLSPEC void *SDLCALL SDL_GetWindowICCProfile(SDL_Window *window, size_t *size);
  584. /**
  585. * Get the pixel format associated with the window.
  586. *
  587. * \param window the window to query
  588. * \returns the pixel format of the window on success or
  589. * SDL_PIXELFORMAT_UNKNOWN on failure; call SDL_GetError() for more
  590. * information.
  591. *
  592. * \since This function is available since SDL 3.0.0.
  593. */
  594. extern DECLSPEC Uint32 SDLCALL SDL_GetWindowPixelFormat(SDL_Window *window);
  595. /**
  596. * Create a window with the specified position, dimensions, and flags.
  597. *
  598. * `flags` may be any of the following OR'd together:
  599. *
  600. * - `SDL_WINDOW_FULLSCREEN_EXCLUSIVE`: fullscreen window, switching display
  601. * mode to the closest fullscreen resolution
  602. * - `SDL_WINDOW_FULLSCREEN_DESKTOP`: fullscreen window at desktop resolution
  603. * - `SDL_WINDOW_OPENGL`: window usable with an OpenGL context
  604. * - `SDL_WINDOW_VULKAN`: window usable with a Vulkan instance
  605. * - `SDL_WINDOW_METAL`: window usable with a Metal instance
  606. * - `SDL_WINDOW_HIDDEN`: window is not visible
  607. * - `SDL_WINDOW_BORDERLESS`: no window decoration
  608. * - `SDL_WINDOW_RESIZABLE`: window can be resized
  609. * - `SDL_WINDOW_MINIMIZED`: window is minimized
  610. * - `SDL_WINDOW_MAXIMIZED`: window is maximized
  611. * - `SDL_WINDOW_MOUSE_GRABBED`: window has grabbed mouse focus
  612. *
  613. * The SDL_Window is implicitly shown if SDL_WINDOW_HIDDEN is not set.
  614. *
  615. * On Apple's macOS, you **must** set the NSHighResolutionCapable Info.plist
  616. * property to YES, otherwise you will not receive a High-DPI OpenGL canvas.
  617. *
  618. * The window size in pixels may differ from its size in screen coordinates if
  619. * the window is on a high density display (one with an OS scaling factor).
  620. * Use SDL_GetWindowSize() to query the client area's size in screen
  621. * coordinates, and SDL_GetWindowSizeInPixels() or SDL_GetRendererOutputSize()
  622. * to query the drawable size in pixels. Note that the drawable size can vary
  623. * after the window is created and should be queried again when the window is
  624. * resized or moved between displays.
  625. *
  626. * If the window is set fullscreen, the width and height parameters `w` and
  627. * `h` will not be used. However, invalid size parameters (e.g. too large) may
  628. * still fail. Window size is actually limited to 16384 x 16384 for all
  629. * platforms at window creation.
  630. *
  631. * If the window is created with any of the SDL_WINDOW_OPENGL or
  632. * SDL_WINDOW_VULKAN flags, then the corresponding LoadLibrary function
  633. * (SDL_GL_LoadLibrary or SDL_Vulkan_LoadLibrary) is called and the
  634. * corresponding UnloadLibrary function is called by SDL_DestroyWindow().
  635. *
  636. * If SDL_WINDOW_VULKAN is specified and there isn't a working Vulkan driver,
  637. * SDL_CreateWindow() will fail because SDL_Vulkan_LoadLibrary() will fail.
  638. *
  639. * If SDL_WINDOW_METAL is specified on an OS that does not support Metal,
  640. * SDL_CreateWindow() will fail.
  641. *
  642. * On non-Apple devices, SDL requires you to either not link to the Vulkan
  643. * loader or link to a dynamic library version. This limitation may be removed
  644. * in a future version of SDL.
  645. *
  646. * \param title the title of the window, in UTF-8 encoding
  647. * \param x the x position of the window, `SDL_WINDOWPOS_CENTERED`, or
  648. * `SDL_WINDOWPOS_UNDEFINED`
  649. * \param y the y position of the window, `SDL_WINDOWPOS_CENTERED`, or
  650. * `SDL_WINDOWPOS_UNDEFINED`
  651. * \param w the width of the window, in screen coordinates
  652. * \param h the height of the window, in screen coordinates
  653. * \param flags 0, or one or more SDL_WindowFlags OR'd together
  654. * \returns the window that was created or NULL on failure; call
  655. * SDL_GetError() for more information.
  656. *
  657. * \since This function is available since SDL 3.0.0.
  658. *
  659. * \sa SDL_CreateWindowFrom
  660. * \sa SDL_DestroyWindow
  661. */
  662. extern DECLSPEC SDL_Window *SDLCALL SDL_CreateWindow(const char *title, int x, int y, int w, int h, Uint32 flags);
  663. /**
  664. * Create an SDL window from an existing native window.
  665. *
  666. * In some cases (e.g. OpenGL) and on some platforms (e.g. Microsoft Windows)
  667. * the hint `SDL_HINT_VIDEO_WINDOW_SHARE_PIXEL_FORMAT` needs to be configured
  668. * before using SDL_CreateWindowFrom().
  669. *
  670. * \param data a pointer to driver-dependent window creation data, typically
  671. * your native window cast to a void*
  672. * \returns the window that was created or NULL on failure; call
  673. * SDL_GetError() for more information.
  674. *
  675. * \since This function is available since SDL 3.0.0.
  676. *
  677. * \sa SDL_CreateWindow
  678. * \sa SDL_DestroyWindow
  679. */
  680. extern DECLSPEC SDL_Window *SDLCALL SDL_CreateWindowFrom(const void *data);
  681. /**
  682. * Get the numeric ID of a window.
  683. *
  684. * The numeric ID is what SDL_WindowEvent references, and is necessary to map
  685. * these events to specific SDL_Window objects.
  686. *
  687. * \param window the window to query
  688. * \returns the ID of the window on success or 0 on failure; call
  689. * SDL_GetError() for more information.
  690. *
  691. * \since This function is available since SDL 3.0.0.
  692. *
  693. * \sa SDL_GetWindowFromID
  694. */
  695. extern DECLSPEC SDL_WindowID SDLCALL SDL_GetWindowID(SDL_Window *window);
  696. /**
  697. * Get a window from a stored ID.
  698. *
  699. * The numeric ID is what SDL_WindowEvent references, and is necessary to map
  700. * these events to specific SDL_Window objects.
  701. *
  702. * \param id the ID of the window
  703. * \returns the window associated with `id` or NULL if it doesn't exist; call
  704. * SDL_GetError() for more information.
  705. *
  706. * \since This function is available since SDL 3.0.0.
  707. *
  708. * \sa SDL_GetWindowID
  709. */
  710. extern DECLSPEC SDL_Window *SDLCALL SDL_GetWindowFromID(SDL_WindowID id);
  711. /**
  712. * Get the window flags.
  713. *
  714. * \param window the window to query
  715. * \returns a mask of the SDL_WindowFlags associated with `window`
  716. *
  717. * \since This function is available since SDL 3.0.0.
  718. *
  719. * \sa SDL_CreateWindow
  720. * \sa SDL_HideWindow
  721. * \sa SDL_MaximizeWindow
  722. * \sa SDL_MinimizeWindow
  723. * \sa SDL_SetWindowFullscreen
  724. * \sa SDL_SetWindowGrab
  725. * \sa SDL_ShowWindow
  726. */
  727. extern DECLSPEC Uint32 SDLCALL SDL_GetWindowFlags(SDL_Window *window);
  728. /**
  729. * Set the title of a window.
  730. *
  731. * This string is expected to be in UTF-8 encoding.
  732. *
  733. * \param window the window to change
  734. * \param title the desired window title in UTF-8 format
  735. *
  736. * \since This function is available since SDL 3.0.0.
  737. *
  738. * \sa SDL_GetWindowTitle
  739. */
  740. extern DECLSPEC void SDLCALL SDL_SetWindowTitle(SDL_Window *window, const char *title);
  741. /**
  742. * Get the title of a window.
  743. *
  744. * \param window the window to query
  745. * \returns the title of the window in UTF-8 format or "" if there is no
  746. * title.
  747. *
  748. * \since This function is available since SDL 3.0.0.
  749. *
  750. * \sa SDL_SetWindowTitle
  751. */
  752. extern DECLSPEC const char *SDLCALL SDL_GetWindowTitle(SDL_Window *window);
  753. /**
  754. * Set the icon for a window.
  755. *
  756. * \param window the window to change
  757. * \param icon an SDL_Surface structure containing the icon for the window
  758. *
  759. * \since This function is available since SDL 3.0.0.
  760. */
  761. extern DECLSPEC void SDLCALL SDL_SetWindowIcon(SDL_Window *window, SDL_Surface *icon);
  762. /**
  763. * Associate an arbitrary named pointer with a window.
  764. *
  765. * `name` is case-sensitive.
  766. *
  767. * \param window the window to associate with the pointer
  768. * \param name the name of the pointer
  769. * \param userdata the associated pointer
  770. * \returns the previous value associated with `name`.
  771. *
  772. * \since This function is available since SDL 3.0.0.
  773. *
  774. * \sa SDL_GetWindowData
  775. */
  776. extern DECLSPEC void *SDLCALL SDL_SetWindowData(SDL_Window *window, const char *name, void *userdata);
  777. /**
  778. * Retrieve the data pointer associated with a window.
  779. *
  780. * \param window the window to query
  781. * \param name the name of the pointer
  782. * \returns the value associated with `name`.
  783. *
  784. * \since This function is available since SDL 3.0.0.
  785. *
  786. * \sa SDL_SetWindowData
  787. */
  788. extern DECLSPEC void *SDLCALL SDL_GetWindowData(SDL_Window *window, const char *name);
  789. /**
  790. * Set the position of a window, in screen coordinates.
  791. *
  792. * \param window the window to reposition
  793. * \param x the x coordinate of the window, or `SDL_WINDOWPOS_CENTERED` or
  794. * `SDL_WINDOWPOS_UNDEFINED`
  795. * \param y the y coordinate of the window, or `SDL_WINDOWPOS_CENTERED` or
  796. * `SDL_WINDOWPOS_UNDEFINED`
  797. *
  798. * \since This function is available since SDL 3.0.0.
  799. *
  800. * \sa SDL_GetWindowPosition
  801. */
  802. extern DECLSPEC void SDLCALL SDL_SetWindowPosition(SDL_Window *window, int x, int y);
  803. /**
  804. * Get the position of a window, in screen coordinates.
  805. *
  806. * If you do not need the value for one of the positions a NULL may be passed
  807. * in the `x` or `y` parameter.
  808. *
  809. * \param window the window to query
  810. * \param x a pointer filled in with the x position of the window, may be NULL
  811. * \param y a pointer filled in with the y position of the window, may be NULL
  812. *
  813. * \since This function is available since SDL 3.0.0.
  814. *
  815. * \sa SDL_SetWindowPosition
  816. */
  817. extern DECLSPEC void SDLCALL SDL_GetWindowPosition(SDL_Window *window, int *x, int *y);
  818. /**
  819. * Set the size of a window's client area, in screen coordinates.
  820. *
  821. * The window size in screen coordinates may differ from the size in pixels if
  822. * the window is on a high density display (one with an OS scaling factor).
  823. *
  824. * Fullscreen windows automatically match the size of the display mode, and
  825. * you should use SDL_SetWindowDisplayMode() to change their size.
  826. *
  827. * \param window the window to change
  828. * \param w the width of the window, must be > 0
  829. * \param h the height of the window, must be > 0
  830. *
  831. * \since This function is available since SDL 3.0.0.
  832. *
  833. * \sa SDL_GetWindowSize
  834. * \sa SDL_SetWindowDisplayMode
  835. */
  836. extern DECLSPEC void SDLCALL SDL_SetWindowSize(SDL_Window *window, int w, int h);
  837. /**
  838. * Get the size of a window's client area, in screen coordinates.
  839. *
  840. * NULL can safely be passed as the `w` or `h` parameter if the width or
  841. * height value is not desired.
  842. *
  843. * The window size in screen coordinates may differ from the size in pixels if
  844. * the window is on a high density display (one with an OS scaling factor).
  845. * Use SDL_GetWindowSizeInPixels(), SDL_GL_GetDrawableSize(),
  846. * SDL_Vulkan_GetDrawableSize(), or SDL_GetRendererOutputSize() to get the
  847. * real client area size in pixels.
  848. *
  849. * \param window the window to query the width and height from
  850. * \param w a pointer filled in with the width of the window, may be NULL
  851. * \param h a pointer filled in with the height of the window, may be NULL
  852. *
  853. * \since This function is available since SDL 3.0.0.
  854. *
  855. * \sa SDL_GetWindowSizeInPixels
  856. * \sa SDL_GL_GetDrawableSize
  857. * \sa SDL_Vulkan_GetDrawableSize
  858. * \sa SDL_GetRendererOutputSize
  859. * \sa SDL_SetWindowSize
  860. */
  861. extern DECLSPEC void SDLCALL SDL_GetWindowSize(SDL_Window *window, int *w, int *h);
  862. /**
  863. * Get the size of a window's borders (decorations) around the client area, in
  864. * screen coordinates.
  865. *
  866. * Note: If this function fails (returns -1), the size values will be
  867. * initialized to 0, 0, 0, 0 (if a non-NULL pointer is provided), as if the
  868. * window in question was borderless.
  869. *
  870. * Note: This function may fail on systems where the window has not yet been
  871. * decorated by the display server (for example, immediately after calling
  872. * SDL_CreateWindow). It is recommended that you wait at least until the
  873. * window has been presented and composited, so that the window system has a
  874. * chance to decorate the window and provide the border dimensions to SDL.
  875. *
  876. * This function also returns -1 if getting the information is not supported.
  877. *
  878. * \param window the window to query the size values of the border
  879. * (decorations) from
  880. * \param top pointer to variable for storing the size of the top border; NULL
  881. * is permitted
  882. * \param left pointer to variable for storing the size of the left border;
  883. * NULL is permitted
  884. * \param bottom pointer to variable for storing the size of the bottom
  885. * border; NULL is permitted
  886. * \param right pointer to variable for storing the size of the right border;
  887. * NULL is permitted
  888. * \returns 0 on success or a negative error code on failure; call
  889. * SDL_GetError() for more information.
  890. *
  891. * \since This function is available since SDL 3.0.0.
  892. *
  893. * \sa SDL_GetWindowSize
  894. */
  895. extern DECLSPEC int SDLCALL SDL_GetWindowBordersSize(SDL_Window *window, int *top, int *left, int *bottom, int *right);
  896. /**
  897. * Get the size of a window's client area, in pixels.
  898. *
  899. * The window size in pixels may differ from the size in screen coordinates if
  900. * the window is on a high density display (one with an OS scaling factor).
  901. *
  902. * \param window the window from which the drawable size should be queried
  903. * \param w a pointer to variable for storing the width in pixels, may be NULL
  904. * \param h a pointer to variable for storing the height in pixels, may be
  905. * NULL
  906. *
  907. * \since This function is available since SDL 3.0.0.
  908. *
  909. * \sa SDL_CreateWindow
  910. * \sa SDL_GetWindowSize
  911. */
  912. extern DECLSPEC void SDLCALL SDL_GetWindowSizeInPixels(SDL_Window *window, int *w, int *h);
  913. /**
  914. * Set the minimum size of a window's client area, in screen coordinates.
  915. *
  916. * \param window the window to change
  917. * \param min_w the minimum width of the window
  918. * \param min_h the minimum height of the window
  919. *
  920. * \since This function is available since SDL 3.0.0.
  921. *
  922. * \sa SDL_GetWindowMinimumSize
  923. * \sa SDL_SetWindowMaximumSize
  924. */
  925. extern DECLSPEC void SDLCALL SDL_SetWindowMinimumSize(SDL_Window *window, int min_w, int min_h);
  926. /**
  927. * Get the minimum size of a window's client area, in screen coordinates.
  928. *
  929. * \param window the window to query
  930. * \param w a pointer filled in with the minimum width of the window, may be
  931. * NULL
  932. * \param h a pointer filled in with the minimum height of the window, may be
  933. * NULL
  934. *
  935. * \since This function is available since SDL 3.0.0.
  936. *
  937. * \sa SDL_GetWindowMaximumSize
  938. * \sa SDL_SetWindowMinimumSize
  939. */
  940. extern DECLSPEC void SDLCALL SDL_GetWindowMinimumSize(SDL_Window *window, int *w, int *h);
  941. /**
  942. * Set the maximum size of a window's client area, in screen coordinates.
  943. *
  944. * \param window the window to change
  945. * \param max_w the maximum width of the window
  946. * \param max_h the maximum height of the window
  947. *
  948. * \since This function is available since SDL 3.0.0.
  949. *
  950. * \sa SDL_GetWindowMaximumSize
  951. * \sa SDL_SetWindowMinimumSize
  952. */
  953. extern DECLSPEC void SDLCALL SDL_SetWindowMaximumSize(SDL_Window *window, int max_w, int max_h);
  954. /**
  955. * Get the maximum size of a window's client area, in screen coordinates.
  956. *
  957. * \param window the window to query
  958. * \param w a pointer filled in with the maximum width of the window, may be
  959. * NULL
  960. * \param h a pointer filled in with the maximum height of the window, may be
  961. * NULL
  962. *
  963. * \since This function is available since SDL 3.0.0.
  964. *
  965. * \sa SDL_GetWindowMinimumSize
  966. * \sa SDL_SetWindowMaximumSize
  967. */
  968. extern DECLSPEC void SDLCALL SDL_GetWindowMaximumSize(SDL_Window *window, int *w, int *h);
  969. /**
  970. * Set the border state of a window.
  971. *
  972. * This will add or remove the window's `SDL_WINDOW_BORDERLESS` flag and add
  973. * or remove the border from the actual window. This is a no-op if the
  974. * window's border already matches the requested state.
  975. *
  976. * You can't change the border state of a fullscreen window.
  977. *
  978. * \param window the window of which to change the border state
  979. * \param bordered SDL_FALSE to remove border, SDL_TRUE to add border
  980. *
  981. * \since This function is available since SDL 3.0.0.
  982. *
  983. * \sa SDL_GetWindowFlags
  984. */
  985. extern DECLSPEC void SDLCALL SDL_SetWindowBordered(SDL_Window *window, SDL_bool bordered);
  986. /**
  987. * Set the user-resizable state of a window.
  988. *
  989. * This will add or remove the window's `SDL_WINDOW_RESIZABLE` flag and
  990. * allow/disallow user resizing of the window. This is a no-op if the window's
  991. * resizable state already matches the requested state.
  992. *
  993. * You can't change the resizable state of a fullscreen window.
  994. *
  995. * \param window the window of which to change the resizable state
  996. * \param resizable SDL_TRUE to allow resizing, SDL_FALSE to disallow
  997. *
  998. * \since This function is available since SDL 3.0.0.
  999. *
  1000. * \sa SDL_GetWindowFlags
  1001. */
  1002. extern DECLSPEC void SDLCALL SDL_SetWindowResizable(SDL_Window *window, SDL_bool resizable);
  1003. /**
  1004. * Set the window to always be above the others.
  1005. *
  1006. * This will add or remove the window's `SDL_WINDOW_ALWAYS_ON_TOP` flag. This
  1007. * will bring the window to the front and keep the window above the rest.
  1008. *
  1009. * \param window The window of which to change the always on top state
  1010. * \param on_top SDL_TRUE to set the window always on top, SDL_FALSE to
  1011. * disable
  1012. *
  1013. * \since This function is available since SDL 3.0.0.
  1014. *
  1015. * \sa SDL_GetWindowFlags
  1016. */
  1017. extern DECLSPEC void SDLCALL SDL_SetWindowAlwaysOnTop(SDL_Window *window, SDL_bool on_top);
  1018. /**
  1019. * Show a window.
  1020. *
  1021. * \param window the window to show
  1022. *
  1023. * \since This function is available since SDL 3.0.0.
  1024. *
  1025. * \sa SDL_HideWindow
  1026. * \sa SDL_RaiseWindow
  1027. */
  1028. extern DECLSPEC void SDLCALL SDL_ShowWindow(SDL_Window *window);
  1029. /**
  1030. * Hide a window.
  1031. *
  1032. * \param window the window to hide
  1033. *
  1034. * \since This function is available since SDL 3.0.0.
  1035. *
  1036. * \sa SDL_ShowWindow
  1037. */
  1038. extern DECLSPEC void SDLCALL SDL_HideWindow(SDL_Window *window);
  1039. /**
  1040. * Raise a window above other windows and set the input focus.
  1041. *
  1042. * \param window the window to raise
  1043. *
  1044. * \since This function is available since SDL 3.0.0.
  1045. */
  1046. extern DECLSPEC void SDLCALL SDL_RaiseWindow(SDL_Window *window);
  1047. /**
  1048. * Make a window as large as possible.
  1049. *
  1050. * \param window the window to maximize
  1051. *
  1052. * \since This function is available since SDL 3.0.0.
  1053. *
  1054. * \sa SDL_MinimizeWindow
  1055. * \sa SDL_RestoreWindow
  1056. */
  1057. extern DECLSPEC void SDLCALL SDL_MaximizeWindow(SDL_Window *window);
  1058. /**
  1059. * Minimize a window to an iconic representation.
  1060. *
  1061. * \param window the window to minimize
  1062. *
  1063. * \since This function is available since SDL 3.0.0.
  1064. *
  1065. * \sa SDL_MaximizeWindow
  1066. * \sa SDL_RestoreWindow
  1067. */
  1068. extern DECLSPEC void SDLCALL SDL_MinimizeWindow(SDL_Window *window);
  1069. /**
  1070. * Restore the size and position of a minimized or maximized window.
  1071. *
  1072. * \param window the window to restore
  1073. *
  1074. * \since This function is available since SDL 3.0.0.
  1075. *
  1076. * \sa SDL_MaximizeWindow
  1077. * \sa SDL_MinimizeWindow
  1078. */
  1079. extern DECLSPEC void SDLCALL SDL_RestoreWindow(SDL_Window *window);
  1080. /**
  1081. * Set a window's fullscreen state.
  1082. *
  1083. * `flags` may be `SDL_WINDOW_FULLSCREEN_EXCLUSIVE`, for "real" fullscreen
  1084. * with a videomode change; `SDL_WINDOW_FULLSCREEN_DESKTOP` for "fake"
  1085. * fullscreen that takes the size of the desktop; and 0 for windowed mode.
  1086. *
  1087. * \param window the window to change
  1088. * \param flags `SDL_WINDOW_FULLSCREEN_EXCLUSIVE`,
  1089. * `SDL_WINDOW_FULLSCREEN_DESKTOP` or 0
  1090. * \returns 0 on success or a negative error code on failure; call
  1091. * SDL_GetError() for more information.
  1092. *
  1093. * \since This function is available since SDL 3.0.0.
  1094. *
  1095. * \sa SDL_GetWindowDisplayMode
  1096. * \sa SDL_SetWindowDisplayMode
  1097. */
  1098. extern DECLSPEC int SDLCALL SDL_SetWindowFullscreen(SDL_Window *window, Uint32 flags);
  1099. /**
  1100. * Get the SDL surface associated with the window.
  1101. *
  1102. * A new surface will be created with the optimal format for the window, if
  1103. * necessary. This surface will be freed when the window is destroyed. Do not
  1104. * free this surface.
  1105. *
  1106. * This surface will be invalidated if the window is resized. After resizing a
  1107. * window this function must be called again to return a valid surface.
  1108. *
  1109. * You may not combine this with 3D or the rendering API on this window.
  1110. *
  1111. * This function is affected by `SDL_HINT_FRAMEBUFFER_ACCELERATION`.
  1112. *
  1113. * \param window the window to query
  1114. * \returns the surface associated with the window, or NULL on failure; call
  1115. * SDL_GetError() for more information.
  1116. *
  1117. * \since This function is available since SDL 3.0.0.
  1118. *
  1119. * \sa SDL_UpdateWindowSurface
  1120. * \sa SDL_UpdateWindowSurfaceRects
  1121. */
  1122. extern DECLSPEC SDL_Surface *SDLCALL SDL_GetWindowSurface(SDL_Window *window);
  1123. /**
  1124. * Copy the window surface to the screen.
  1125. *
  1126. * This is the function you use to reflect any changes to the surface on the
  1127. * screen.
  1128. *
  1129. * This function is equivalent to the SDL 1.2 API SDL_Flip().
  1130. *
  1131. * \param window the window to update
  1132. * \returns 0 on success or a negative error code on failure; call
  1133. * SDL_GetError() for more information.
  1134. *
  1135. * \since This function is available since SDL 3.0.0.
  1136. *
  1137. * \sa SDL_GetWindowSurface
  1138. * \sa SDL_UpdateWindowSurfaceRects
  1139. */
  1140. extern DECLSPEC int SDLCALL SDL_UpdateWindowSurface(SDL_Window *window);
  1141. /**
  1142. * Copy areas of the window surface to the screen.
  1143. *
  1144. * This is the function you use to reflect changes to portions of the surface
  1145. * on the screen.
  1146. *
  1147. * This function is equivalent to the SDL 1.2 API SDL_UpdateRects().
  1148. *
  1149. * \param window the window to update
  1150. * \param rects an array of SDL_Rect structures representing areas of the
  1151. * surface to copy, in pixels
  1152. * \param numrects the number of rectangles
  1153. * \returns 0 on success or a negative error code on failure; call
  1154. * SDL_GetError() for more information.
  1155. *
  1156. * \since This function is available since SDL 3.0.0.
  1157. *
  1158. * \sa SDL_GetWindowSurface
  1159. * \sa SDL_UpdateWindowSurface
  1160. */
  1161. extern DECLSPEC int SDLCALL SDL_UpdateWindowSurfaceRects(SDL_Window *window, const SDL_Rect *rects, int numrects);
  1162. /**
  1163. * Set a window's input grab mode.
  1164. *
  1165. * When input is grabbed, the mouse is confined to the window. This function
  1166. * will also grab the keyboard if `SDL_HINT_GRAB_KEYBOARD` is set. To grab the
  1167. * keyboard without also grabbing the mouse, use SDL_SetWindowKeyboardGrab().
  1168. *
  1169. * If the caller enables a grab while another window is currently grabbed, the
  1170. * other window loses its grab in favor of the caller's window.
  1171. *
  1172. * \param window the window for which the input grab mode should be set
  1173. * \param grabbed SDL_TRUE to grab input or SDL_FALSE to release input
  1174. *
  1175. * \since This function is available since SDL 3.0.0.
  1176. *
  1177. * \sa SDL_GetGrabbedWindow
  1178. * \sa SDL_GetWindowGrab
  1179. */
  1180. extern DECLSPEC void SDLCALL SDL_SetWindowGrab(SDL_Window *window, SDL_bool grabbed);
  1181. /**
  1182. * Set a window's keyboard grab mode.
  1183. *
  1184. * Keyboard grab enables capture of system keyboard shortcuts like Alt+Tab or
  1185. * the Meta/Super key. Note that not all system keyboard shortcuts can be
  1186. * captured by applications (one example is Ctrl+Alt+Del on Windows).
  1187. *
  1188. * This is primarily intended for specialized applications such as VNC clients
  1189. * or VM frontends. Normal games should not use keyboard grab.
  1190. *
  1191. * When keyboard grab is enabled, SDL will continue to handle Alt+Tab when the
  1192. * window is full-screen to ensure the user is not trapped in your
  1193. * application. If you have a custom keyboard shortcut to exit fullscreen
  1194. * mode, you may suppress this behavior with
  1195. * `SDL_HINT_ALLOW_ALT_TAB_WHILE_GRABBED`.
  1196. *
  1197. * If the caller enables a grab while another window is currently grabbed, the
  1198. * other window loses its grab in favor of the caller's window.
  1199. *
  1200. * \param window The window for which the keyboard grab mode should be set.
  1201. * \param grabbed This is SDL_TRUE to grab keyboard, and SDL_FALSE to release.
  1202. *
  1203. * \since This function is available since SDL 3.0.0.
  1204. *
  1205. * \sa SDL_GetWindowKeyboardGrab
  1206. * \sa SDL_SetWindowMouseGrab
  1207. * \sa SDL_SetWindowGrab
  1208. */
  1209. extern DECLSPEC void SDLCALL SDL_SetWindowKeyboardGrab(SDL_Window *window, SDL_bool grabbed);
  1210. /**
  1211. * Set a window's mouse grab mode.
  1212. *
  1213. * Mouse grab confines the mouse cursor to the window.
  1214. *
  1215. * \param window The window for which the mouse grab mode should be set.
  1216. * \param grabbed This is SDL_TRUE to grab mouse, and SDL_FALSE to release.
  1217. *
  1218. * \since This function is available since SDL 3.0.0.
  1219. *
  1220. * \sa SDL_GetWindowMouseGrab
  1221. * \sa SDL_SetWindowKeyboardGrab
  1222. * \sa SDL_SetWindowGrab
  1223. */
  1224. extern DECLSPEC void SDLCALL SDL_SetWindowMouseGrab(SDL_Window *window, SDL_bool grabbed);
  1225. /**
  1226. * Get a window's input grab mode.
  1227. *
  1228. * \param window the window to query
  1229. * \returns SDL_TRUE if input is grabbed, SDL_FALSE otherwise.
  1230. *
  1231. * \since This function is available since SDL 3.0.0.
  1232. *
  1233. * \sa SDL_SetWindowGrab
  1234. */
  1235. extern DECLSPEC SDL_bool SDLCALL SDL_GetWindowGrab(SDL_Window *window);
  1236. /**
  1237. * Get a window's keyboard grab mode.
  1238. *
  1239. * \param window the window to query
  1240. * \returns SDL_TRUE if keyboard is grabbed, and SDL_FALSE otherwise.
  1241. *
  1242. * \since This function is available since SDL 3.0.0.
  1243. *
  1244. * \sa SDL_SetWindowKeyboardGrab
  1245. * \sa SDL_GetWindowGrab
  1246. */
  1247. extern DECLSPEC SDL_bool SDLCALL SDL_GetWindowKeyboardGrab(SDL_Window *window);
  1248. /**
  1249. * Get a window's mouse grab mode.
  1250. *
  1251. * \param window the window to query
  1252. * \returns SDL_TRUE if mouse is grabbed, and SDL_FALSE otherwise.
  1253. *
  1254. * \since This function is available since SDL 3.0.0.
  1255. *
  1256. * \sa SDL_SetWindowKeyboardGrab
  1257. * \sa SDL_GetWindowGrab
  1258. */
  1259. extern DECLSPEC SDL_bool SDLCALL SDL_GetWindowMouseGrab(SDL_Window *window);
  1260. /**
  1261. * Get the window that currently has an input grab enabled.
  1262. *
  1263. * \returns the window if input is grabbed or NULL otherwise.
  1264. *
  1265. * \since This function is available since SDL 3.0.0.
  1266. *
  1267. * \sa SDL_GetWindowGrab
  1268. * \sa SDL_SetWindowGrab
  1269. */
  1270. extern DECLSPEC SDL_Window *SDLCALL SDL_GetGrabbedWindow(void);
  1271. /**
  1272. * Confines the cursor to the specified area of a window.
  1273. *
  1274. * Note that this does NOT grab the cursor, it only defines the area a cursor
  1275. * is restricted to when the window has mouse focus.
  1276. *
  1277. * \param window The window that will be associated with the barrier.
  1278. * \param rect A rectangle area in window-relative coordinates. If NULL the
  1279. * barrier for the specified window will be destroyed.
  1280. * \returns 0 on success or a negative error code on failure; call
  1281. * SDL_GetError() for more information.
  1282. *
  1283. * \since This function is available since SDL 3.0.0.
  1284. *
  1285. * \sa SDL_GetWindowMouseRect
  1286. * \sa SDL_SetWindowMouseGrab
  1287. */
  1288. extern DECLSPEC int SDLCALL SDL_SetWindowMouseRect(SDL_Window *window, const SDL_Rect *rect);
  1289. /**
  1290. * Get the mouse confinement rectangle of a window.
  1291. *
  1292. * \param window The window to query
  1293. * \returns A pointer to the mouse confinement rectangle of a window, or NULL
  1294. * if there isn't one.
  1295. *
  1296. * \since This function is available since SDL 3.0.0.
  1297. *
  1298. * \sa SDL_SetWindowMouseRect
  1299. */
  1300. extern DECLSPEC const SDL_Rect *SDLCALL SDL_GetWindowMouseRect(SDL_Window *window);
  1301. /**
  1302. * Set the opacity for a window.
  1303. *
  1304. * The parameter `opacity` will be clamped internally between 0.0f
  1305. * (transparent) and 1.0f (opaque).
  1306. *
  1307. * This function also returns -1 if setting the opacity isn't supported.
  1308. *
  1309. * \param window the window which will be made transparent or opaque
  1310. * \param opacity the opacity value (0.0f - transparent, 1.0f - opaque)
  1311. * \returns 0 on success or a negative error code on failure; call
  1312. * SDL_GetError() for more information.
  1313. *
  1314. * \since This function is available since SDL 3.0.0.
  1315. *
  1316. * \sa SDL_GetWindowOpacity
  1317. */
  1318. extern DECLSPEC int SDLCALL SDL_SetWindowOpacity(SDL_Window *window, float opacity);
  1319. /**
  1320. * Get the opacity of a window.
  1321. *
  1322. * If transparency isn't supported on this platform, opacity will be reported
  1323. * as 1.0f without error.
  1324. *
  1325. * The parameter `opacity` is ignored if it is NULL.
  1326. *
  1327. * This function also returns -1 if an invalid window was provided.
  1328. *
  1329. * \param window the window to get the current opacity value from
  1330. * \param out_opacity the float filled in (0.0f - transparent, 1.0f - opaque)
  1331. * \returns 0 on success or a negative error code on failure; call
  1332. * SDL_GetError() for more information.
  1333. *
  1334. * \since This function is available since SDL 3.0.0.
  1335. *
  1336. * \sa SDL_SetWindowOpacity
  1337. */
  1338. extern DECLSPEC int SDLCALL SDL_GetWindowOpacity(SDL_Window *window, float *out_opacity);
  1339. /**
  1340. * Set the window as a modal for another window.
  1341. *
  1342. * \param modal_window the window that should be set modal
  1343. * \param parent_window the parent window for the modal window
  1344. * \returns 0 on success or a negative error code on failure; call
  1345. * SDL_GetError() for more information.
  1346. *
  1347. * \since This function is available since SDL 3.0.0.
  1348. */
  1349. extern DECLSPEC int SDLCALL SDL_SetWindowModalFor(SDL_Window *modal_window, SDL_Window *parent_window);
  1350. /**
  1351. * Explicitly set input focus to the window.
  1352. *
  1353. * You almost certainly want SDL_RaiseWindow() instead of this function. Use
  1354. * this with caution, as you might give focus to a window that is completely
  1355. * obscured by other windows.
  1356. *
  1357. * \param window the window that should get the input focus
  1358. * \returns 0 on success or a negative error code on failure; call
  1359. * SDL_GetError() for more information.
  1360. *
  1361. * \since This function is available since SDL 3.0.0.
  1362. *
  1363. * \sa SDL_RaiseWindow
  1364. */
  1365. extern DECLSPEC int SDLCALL SDL_SetWindowInputFocus(SDL_Window *window);
  1366. /**
  1367. * Possible return values from the SDL_HitTest callback.
  1368. *
  1369. * \sa SDL_HitTest
  1370. */
  1371. typedef enum
  1372. {
  1373. SDL_HITTEST_NORMAL, /**< Region is normal. No special properties. */
  1374. SDL_HITTEST_DRAGGABLE, /**< Region can drag entire window. */
  1375. SDL_HITTEST_RESIZE_TOPLEFT,
  1376. SDL_HITTEST_RESIZE_TOP,
  1377. SDL_HITTEST_RESIZE_TOPRIGHT,
  1378. SDL_HITTEST_RESIZE_RIGHT,
  1379. SDL_HITTEST_RESIZE_BOTTOMRIGHT,
  1380. SDL_HITTEST_RESIZE_BOTTOM,
  1381. SDL_HITTEST_RESIZE_BOTTOMLEFT,
  1382. SDL_HITTEST_RESIZE_LEFT
  1383. } SDL_HitTestResult;
  1384. /**
  1385. * Callback used for hit-testing.
  1386. *
  1387. * \param win the SDL_Window where hit-testing was set on
  1388. * \param area an SDL_Point which should be hit-tested
  1389. * \param data what was passed as `callback_data` to SDL_SetWindowHitTest()
  1390. * \return an SDL_HitTestResult value.
  1391. *
  1392. * \sa SDL_SetWindowHitTest
  1393. */
  1394. typedef SDL_HitTestResult (SDLCALL *SDL_HitTest)(SDL_Window *win,
  1395. const SDL_Point *area,
  1396. void *data);
  1397. /**
  1398. * Provide a callback that decides if a window region has special properties.
  1399. *
  1400. * Normally windows are dragged and resized by decorations provided by the
  1401. * system window manager (a title bar, borders, etc), but for some apps, it
  1402. * makes sense to drag them from somewhere else inside the window itself; for
  1403. * example, one might have a borderless window that wants to be draggable from
  1404. * any part, or simulate its own title bar, etc.
  1405. *
  1406. * This function lets the app provide a callback that designates pieces of a
  1407. * given window as special. This callback is run during event processing if we
  1408. * need to tell the OS to treat a region of the window specially; the use of
  1409. * this callback is known as "hit testing."
  1410. *
  1411. * Mouse input may not be delivered to your application if it is within a
  1412. * special area; the OS will often apply that input to moving the window or
  1413. * resizing the window and not deliver it to the application.
  1414. *
  1415. * Specifying NULL for a callback disables hit-testing. Hit-testing is
  1416. * disabled by default.
  1417. *
  1418. * Platforms that don't support this functionality will return -1
  1419. * unconditionally, even if you're attempting to disable hit-testing.
  1420. *
  1421. * Your callback may fire at any time, and its firing does not indicate any
  1422. * specific behavior (for example, on Windows, this certainly might fire when
  1423. * the OS is deciding whether to drag your window, but it fires for lots of
  1424. * other reasons, too, some unrelated to anything you probably care about _and
  1425. * when the mouse isn't actually at the location it is testing_). Since this
  1426. * can fire at any time, you should try to keep your callback efficient,
  1427. * devoid of allocations, etc.
  1428. *
  1429. * \param window the window to set hit-testing on
  1430. * \param callback the function to call when doing a hit-test
  1431. * \param callback_data an app-defined void pointer passed to **callback**
  1432. * \returns 0 on success or -1 on error (including unsupported); call
  1433. * SDL_GetError() for more information.
  1434. *
  1435. * \since This function is available since SDL 3.0.0.
  1436. */
  1437. extern DECLSPEC int SDLCALL SDL_SetWindowHitTest(SDL_Window *window, SDL_HitTest callback, void *callback_data);
  1438. /**
  1439. * Request a window to demand attention from the user.
  1440. *
  1441. * \param window the window to be flashed
  1442. * \param operation the flash operation
  1443. * \returns 0 on success or a negative error code on failure; call
  1444. * SDL_GetError() for more information.
  1445. *
  1446. * \since This function is available since SDL 3.0.0.
  1447. */
  1448. extern DECLSPEC int SDLCALL SDL_FlashWindow(SDL_Window *window, SDL_FlashOperation operation);
  1449. /**
  1450. * Destroy a window.
  1451. *
  1452. * If `window` is NULL, this function will return immediately after setting
  1453. * the SDL error message to "Invalid window". See SDL_GetError().
  1454. *
  1455. * \param window the window to destroy
  1456. *
  1457. * \since This function is available since SDL 3.0.0.
  1458. *
  1459. * \sa SDL_CreateWindow
  1460. * \sa SDL_CreateWindowFrom
  1461. */
  1462. extern DECLSPEC void SDLCALL SDL_DestroyWindow(SDL_Window *window);
  1463. /**
  1464. * Check whether the screensaver is currently enabled.
  1465. *
  1466. * The screensaver is disabled by default since SDL 2.0.2. Before SDL 2.0.2
  1467. * the screensaver was enabled by default.
  1468. *
  1469. * The default can also be changed using `SDL_HINT_VIDEO_ALLOW_SCREENSAVER`.
  1470. *
  1471. * \returns SDL_TRUE if the screensaver is enabled, SDL_FALSE if it is
  1472. * disabled.
  1473. *
  1474. * \since This function is available since SDL 3.0.0.
  1475. *
  1476. * \sa SDL_DisableScreenSaver
  1477. * \sa SDL_EnableScreenSaver
  1478. */
  1479. extern DECLSPEC SDL_bool SDLCALL SDL_ScreenSaverEnabled(void);
  1480. /**
  1481. * Allow the screen to be blanked by a screen saver.
  1482. *
  1483. * \since This function is available since SDL 3.0.0.
  1484. *
  1485. * \sa SDL_DisableScreenSaver
  1486. * \sa SDL_ScreenSaverEnabled
  1487. */
  1488. extern DECLSPEC void SDLCALL SDL_EnableScreenSaver(void);
  1489. /**
  1490. * Prevent the screen from being blanked by a screen saver.
  1491. *
  1492. * If you disable the screensaver, it is automatically re-enabled when SDL
  1493. * quits.
  1494. *
  1495. * The screensaver is disabled by default since SDL 2.0.2. Before SDL 2.0.2
  1496. * the screensaver was enabled by default.
  1497. *
  1498. * \since This function is available since SDL 3.0.0.
  1499. *
  1500. * \sa SDL_EnableScreenSaver
  1501. * \sa SDL_ScreenSaverEnabled
  1502. */
  1503. extern DECLSPEC void SDLCALL SDL_DisableScreenSaver(void);
  1504. /**
  1505. * \name OpenGL support functions
  1506. */
  1507. /* @{ */
  1508. /**
  1509. * Dynamically load an OpenGL library.
  1510. *
  1511. * This should be done after initializing the video driver, but before
  1512. * creating any OpenGL windows. If no OpenGL library is loaded, the default
  1513. * library will be loaded upon creation of the first OpenGL window.
  1514. *
  1515. * If you do this, you need to retrieve all of the GL functions used in your
  1516. * program from the dynamic library using SDL_GL_GetProcAddress().
  1517. *
  1518. * \param path the platform dependent OpenGL library name, or NULL to open the
  1519. * default OpenGL library
  1520. * \returns 0 on success or a negative error code on failure; call
  1521. * SDL_GetError() for more information.
  1522. *
  1523. * \since This function is available since SDL 3.0.0.
  1524. *
  1525. * \sa SDL_GL_GetProcAddress
  1526. * \sa SDL_GL_UnloadLibrary
  1527. */
  1528. extern DECLSPEC int SDLCALL SDL_GL_LoadLibrary(const char *path);
  1529. /**
  1530. * Get an OpenGL function by name.
  1531. *
  1532. * If the GL library is loaded at runtime with SDL_GL_LoadLibrary(), then all
  1533. * GL functions must be retrieved this way. Usually this is used to retrieve
  1534. * function pointers to OpenGL extensions.
  1535. *
  1536. * There are some quirks to looking up OpenGL functions that require some
  1537. * extra care from the application. If you code carefully, you can handle
  1538. * these quirks without any platform-specific code, though:
  1539. *
  1540. * - On Windows, function pointers are specific to the current GL context;
  1541. * this means you need to have created a GL context and made it current
  1542. * before calling SDL_GL_GetProcAddress(). If you recreate your context or
  1543. * create a second context, you should assume that any existing function
  1544. * pointers aren't valid to use with it. This is (currently) a
  1545. * Windows-specific limitation, and in practice lots of drivers don't suffer
  1546. * this limitation, but it is still the way the wgl API is documented to
  1547. * work and you should expect crashes if you don't respect it. Store a copy
  1548. * of the function pointers that comes and goes with context lifespan.
  1549. * - On X11, function pointers returned by this function are valid for any
  1550. * context, and can even be looked up before a context is created at all.
  1551. * This means that, for at least some common OpenGL implementations, if you
  1552. * look up a function that doesn't exist, you'll get a non-NULL result that
  1553. * is _NOT_ safe to call. You must always make sure the function is actually
  1554. * available for a given GL context before calling it, by checking for the
  1555. * existence of the appropriate extension with SDL_GL_ExtensionSupported(),
  1556. * or verifying that the version of OpenGL you're using offers the function
  1557. * as core functionality.
  1558. * - Some OpenGL drivers, on all platforms, *will* return NULL if a function
  1559. * isn't supported, but you can't count on this behavior. Check for
  1560. * extensions you use, and if you get a NULL anyway, act as if that
  1561. * extension wasn't available. This is probably a bug in the driver, but you
  1562. * can code defensively for this scenario anyhow.
  1563. * - Just because you're on Linux/Unix, don't assume you'll be using X11.
  1564. * Next-gen display servers are waiting to replace it, and may or may not
  1565. * make the same promises about function pointers.
  1566. * - OpenGL function pointers must be declared `APIENTRY` as in the example
  1567. * code. This will ensure the proper calling convention is followed on
  1568. * platforms where this matters (Win32) thereby avoiding stack corruption.
  1569. *
  1570. * \param proc the name of an OpenGL function
  1571. * \returns a pointer to the named OpenGL function. The returned pointer
  1572. * should be cast to the appropriate function signature.
  1573. *
  1574. * \since This function is available since SDL 3.0.0.
  1575. *
  1576. * \sa SDL_GL_ExtensionSupported
  1577. * \sa SDL_GL_LoadLibrary
  1578. * \sa SDL_GL_UnloadLibrary
  1579. */
  1580. extern DECLSPEC SDL_FunctionPointer SDLCALL SDL_GL_GetProcAddress(const char *proc);
  1581. /**
  1582. * Get an EGL library function by name.
  1583. *
  1584. * If an EGL library is loaded, this function allows applications to get entry
  1585. * points for EGL functions. This is useful to provide to an EGL API and
  1586. * extension loader.
  1587. *
  1588. * \param proc the name of an EGL function
  1589. * \returns a pointer to the named EGL function. The returned pointer should
  1590. * be cast to the appropriate function signature.
  1591. *
  1592. * \since This function is available since SDL 3.0.0.
  1593. *
  1594. * \sa SDL_GL_GetCurrentEGLDisplay
  1595. */
  1596. extern DECLSPEC SDL_FunctionPointer SDLCALL SDL_EGL_GetProcAddress(const char *proc);
  1597. /**
  1598. * Unload the OpenGL library previously loaded by SDL_GL_LoadLibrary().
  1599. *
  1600. * \since This function is available since SDL 3.0.0.
  1601. *
  1602. * \sa SDL_GL_LoadLibrary
  1603. */
  1604. extern DECLSPEC void SDLCALL SDL_GL_UnloadLibrary(void);
  1605. /**
  1606. * Check if an OpenGL extension is supported for the current context.
  1607. *
  1608. * This function operates on the current GL context; you must have created a
  1609. * context and it must be current before calling this function. Do not assume
  1610. * that all contexts you create will have the same set of extensions
  1611. * available, or that recreating an existing context will offer the same
  1612. * extensions again.
  1613. *
  1614. * While it's probably not a massive overhead, this function is not an O(1)
  1615. * operation. Check the extensions you care about after creating the GL
  1616. * context and save that information somewhere instead of calling the function
  1617. * every time you need to know.
  1618. *
  1619. * \param extension the name of the extension to check
  1620. * \returns SDL_TRUE if the extension is supported, SDL_FALSE otherwise.
  1621. *
  1622. * \since This function is available since SDL 3.0.0.
  1623. */
  1624. extern DECLSPEC SDL_bool SDLCALL SDL_GL_ExtensionSupported(const char *extension);
  1625. /**
  1626. * Reset all previously set OpenGL context attributes to their default values.
  1627. *
  1628. * \since This function is available since SDL 3.0.0.
  1629. *
  1630. * \sa SDL_GL_GetAttribute
  1631. * \sa SDL_GL_SetAttribute
  1632. */
  1633. extern DECLSPEC void SDLCALL SDL_GL_ResetAttributes(void);
  1634. /**
  1635. * Set an OpenGL window attribute before window creation.
  1636. *
  1637. * This function sets the OpenGL attribute `attr` to `value`. The requested
  1638. * attributes should be set before creating an OpenGL window. You should use
  1639. * SDL_GL_GetAttribute() to check the values after creating the OpenGL
  1640. * context, since the values obtained can differ from the requested ones.
  1641. *
  1642. * \param attr an SDL_GLattr enum value specifying the OpenGL attribute to set
  1643. * \param value the desired value for the attribute
  1644. * \returns 0 on success or a negative error code on failure; call
  1645. * SDL_GetError() for more information.
  1646. *
  1647. * \since This function is available since SDL 3.0.0.
  1648. *
  1649. * \sa SDL_GL_GetAttribute
  1650. * \sa SDL_GL_ResetAttributes
  1651. */
  1652. extern DECLSPEC int SDLCALL SDL_GL_SetAttribute(SDL_GLattr attr, int value);
  1653. /**
  1654. * Get the actual value for an attribute from the current context.
  1655. *
  1656. * \param attr an SDL_GLattr enum value specifying the OpenGL attribute to get
  1657. * \param value a pointer filled in with the current value of `attr`
  1658. * \returns 0 on success or a negative error code on failure; call
  1659. * SDL_GetError() for more information.
  1660. *
  1661. * \since This function is available since SDL 3.0.0.
  1662. *
  1663. * \sa SDL_GL_ResetAttributes
  1664. * \sa SDL_GL_SetAttribute
  1665. */
  1666. extern DECLSPEC int SDLCALL SDL_GL_GetAttribute(SDL_GLattr attr, int *value);
  1667. /**
  1668. * Create an OpenGL context for an OpenGL window, and make it current.
  1669. *
  1670. * Windows users new to OpenGL should note that, for historical reasons, GL
  1671. * functions added after OpenGL version 1.1 are not available by default.
  1672. * Those functions must be loaded at run-time, either with an OpenGL
  1673. * extension-handling library or with SDL_GL_GetProcAddress() and its related
  1674. * functions.
  1675. *
  1676. * SDL_GLContext is an alias for `void *`. It's opaque to the application.
  1677. *
  1678. * \param window the window to associate with the context
  1679. * \returns the OpenGL context associated with `window` or NULL on error; call
  1680. * SDL_GetError() for more details.
  1681. *
  1682. * \since This function is available since SDL 3.0.0.
  1683. *
  1684. * \sa SDL_GL_DeleteContext
  1685. * \sa SDL_GL_MakeCurrent
  1686. */
  1687. extern DECLSPEC SDL_GLContext SDLCALL SDL_GL_CreateContext(SDL_Window *window);
  1688. /**
  1689. * Set up an OpenGL context for rendering into an OpenGL window.
  1690. *
  1691. * The context must have been created with a compatible window.
  1692. *
  1693. * \param window the window to associate with the context
  1694. * \param context the OpenGL context to associate with the window
  1695. * \returns 0 on success or a negative error code on failure; call
  1696. * SDL_GetError() for more information.
  1697. *
  1698. * \since This function is available since SDL 3.0.0.
  1699. *
  1700. * \sa SDL_GL_CreateContext
  1701. */
  1702. extern DECLSPEC int SDLCALL SDL_GL_MakeCurrent(SDL_Window *window, SDL_GLContext context);
  1703. /**
  1704. * Get the currently active OpenGL window.
  1705. *
  1706. * \returns the currently active OpenGL window on success or NULL on failure;
  1707. * call SDL_GetError() for more information.
  1708. *
  1709. * \since This function is available since SDL 3.0.0.
  1710. */
  1711. extern DECLSPEC SDL_Window *SDLCALL SDL_GL_GetCurrentWindow(void);
  1712. /**
  1713. * Get the currently active OpenGL context.
  1714. *
  1715. * \returns the currently active OpenGL context or NULL on failure; call
  1716. * SDL_GetError() for more information.
  1717. *
  1718. * \since This function is available since SDL 3.0.0.
  1719. *
  1720. * \sa SDL_GL_MakeCurrent
  1721. */
  1722. extern DECLSPEC SDL_GLContext SDLCALL SDL_GL_GetCurrentContext(void);
  1723. /**
  1724. * Get the currently active EGL display.
  1725. *
  1726. * \returns the currently active EGL display or NULL on failure; call
  1727. * SDL_GetError() for more information.
  1728. *
  1729. * \since This function is available since SDL 3.0.0.
  1730. */
  1731. extern DECLSPEC SDL_EGLDisplay SDLCALL SDL_EGL_GetCurrentEGLDisplay(void);
  1732. /**
  1733. * Get the currently active EGL config.
  1734. *
  1735. * \returns the currently active EGL config or NULL on failure; call
  1736. * SDL_GetError() for more information.
  1737. *
  1738. * \since This function is available since SDL 3.0.0.
  1739. */
  1740. extern DECLSPEC SDL_EGLConfig SDLCALL SDL_EGL_GetCurrentEGLConfig(void);
  1741. /**
  1742. * Get the EGL surface associated with the window.
  1743. *
  1744. * \returns the EGLSurface pointer associated with the window, or NULL on
  1745. * failure.
  1746. *
  1747. * \since This function is available since SDL 3.0.0.
  1748. */
  1749. extern DECLSPEC SDL_EGLSurface SDLCALL SDL_EGL_GetWindowEGLSurface(SDL_Window *window);
  1750. /**
  1751. * Sets the callbacks for defining custom EGLAttrib arrays for EGL
  1752. * initialization.
  1753. *
  1754. * Each callback should return a pointer to an EGL attribute array terminated
  1755. * with EGL_NONE. Callbacks may return NULL pointers to signal an error, which
  1756. * will cause the SDL_CreateWindow process to fail gracefully.
  1757. *
  1758. * The arrays returned by each callback will be appended to the existing
  1759. * attribute arrays defined by SDL.
  1760. *
  1761. * NOTE: These callback pointers will be reset after SDL_GL_ResetAttributes.
  1762. *
  1763. * \param platformAttribCallback Callback for attributes to pass to
  1764. * eglGetPlatformDisplay.
  1765. * \param surfaceAttribCallback Callback for attributes to pass to
  1766. * eglCreateSurface.
  1767. * \param contextAttribCallback Callback for attributes to pass to
  1768. * eglCreateContext.
  1769. *
  1770. * \since This function is available since SDL 3.0.0.
  1771. */
  1772. extern DECLSPEC void SDLCALL SDL_EGL_SetEGLAttributeCallbacks(SDL_EGLAttribArrayCallback platformAttribCallback,
  1773. SDL_EGLIntArrayCallback surfaceAttribCallback,
  1774. SDL_EGLIntArrayCallback contextAttribCallback);
  1775. /**
  1776. * Get the size of a window's underlying drawable in pixels.
  1777. *
  1778. * This returns info useful for calling glViewport().
  1779. *
  1780. * \param window the window from which the drawable size should be queried
  1781. * \param w a pointer to variable for storing the width in pixels, may be NULL
  1782. * \param h a pointer to variable for storing the height in pixels, may be
  1783. * NULL
  1784. *
  1785. * \since This function is available since SDL 3.0.0.
  1786. *
  1787. * \sa SDL_CreateWindow
  1788. * \sa SDL_GetWindowSize
  1789. */
  1790. extern DECLSPEC void SDLCALL SDL_GL_GetDrawableSize(SDL_Window *window, int *w, int *h);
  1791. /**
  1792. * Set the swap interval for the current OpenGL context.
  1793. *
  1794. * Some systems allow specifying -1 for the interval, to enable adaptive
  1795. * vsync. Adaptive vsync works the same as vsync, but if you've already missed
  1796. * the vertical retrace for a given frame, it swaps buffers immediately, which
  1797. * might be less jarring for the user during occasional framerate drops. If an
  1798. * application requests adaptive vsync and the system does not support it,
  1799. * this function will fail and return -1. In such a case, you should probably
  1800. * retry the call with 1 for the interval.
  1801. *
  1802. * Adaptive vsync is implemented for some glX drivers with
  1803. * GLX_EXT_swap_control_tear, and for some Windows drivers with
  1804. * WGL_EXT_swap_control_tear.
  1805. *
  1806. * Read more on the Khronos wiki:
  1807. * https://www.khronos.org/opengl/wiki/Swap_Interval#Adaptive_Vsync
  1808. *
  1809. * \param interval 0 for immediate updates, 1 for updates synchronized with
  1810. * the vertical retrace, -1 for adaptive vsync
  1811. * \returns 0 on success or -1 if setting the swap interval is not supported;
  1812. * call SDL_GetError() for more information.
  1813. *
  1814. * \since This function is available since SDL 3.0.0.
  1815. *
  1816. * \sa SDL_GL_GetSwapInterval
  1817. */
  1818. extern DECLSPEC int SDLCALL SDL_GL_SetSwapInterval(int interval);
  1819. /**
  1820. * Get the swap interval for the current OpenGL context.
  1821. *
  1822. * If the system can't determine the swap interval, or there isn't a valid
  1823. * current context, this function will set *interval to 0 as a safe default.
  1824. *
  1825. * \param interval Output interval value. 0 if there is no vertical retrace
  1826. * synchronization, 1 if the buffer swap is synchronized with
  1827. * the vertical retrace, and -1 if late swaps happen
  1828. * immediately instead of waiting for the next retrace
  1829. * \returns 0 on success or -1 error. call SDL_GetError() for more
  1830. * information.
  1831. *
  1832. * \since This function is available since SDL 3.0.0.
  1833. *
  1834. * \sa SDL_GL_SetSwapInterval
  1835. */
  1836. extern DECLSPEC int SDLCALL SDL_GL_GetSwapInterval(int *interval);
  1837. /**
  1838. * Update a window with OpenGL rendering.
  1839. *
  1840. * This is used with double-buffered OpenGL contexts, which are the default.
  1841. *
  1842. * On macOS, make sure you bind 0 to the draw framebuffer before swapping the
  1843. * window, otherwise nothing will happen. If you aren't using
  1844. * glBindFramebuffer(), this is the default and you won't have to do anything
  1845. * extra.
  1846. *
  1847. * \param window the window to change
  1848. * \returns 0 on success or a negative error code on failure; call
  1849. * SDL_GetError() for more information.
  1850. *
  1851. * \since This function is available since SDL 3.0.0.
  1852. */
  1853. extern DECLSPEC int SDLCALL SDL_GL_SwapWindow(SDL_Window *window);
  1854. /**
  1855. * Delete an OpenGL context.
  1856. *
  1857. * \param context the OpenGL context to be deleted
  1858. *
  1859. * \since This function is available since SDL 3.0.0.
  1860. *
  1861. * \sa SDL_GL_CreateContext
  1862. */
  1863. extern DECLSPEC void SDLCALL SDL_GL_DeleteContext(SDL_GLContext context);
  1864. /* @} *//* OpenGL support functions */
  1865. /* Ends C function definitions when using C++ */
  1866. #ifdef __cplusplus
  1867. }
  1868. #endif
  1869. #include <SDL3/SDL_close_code.h>
  1870. #endif /* SDL_video_h_ */