SDL_video.h 78 KB

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