SDL_hints.h 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2017 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_hints.h
  20. *
  21. * Official documentation for SDL configuration variables
  22. *
  23. * This file contains functions to set and get configuration hints,
  24. * as well as listing each of them alphabetically.
  25. *
  26. * The convention for naming hints is SDL_HINT_X, where "SDL_X" is
  27. * the environment variable that can be used to override the default.
  28. *
  29. * In general these hints are just that - they may or may not be
  30. * supported or applicable on any given platform, but they provide
  31. * a way for an application or user to give the library a hint as
  32. * to how they would like the library to work.
  33. */
  34. #ifndef SDL_hints_h_
  35. #define SDL_hints_h_
  36. #include "SDL_stdinc.h"
  37. #include "begin_code.h"
  38. /* Set up for C function definitions, even when using C++ */
  39. #ifdef __cplusplus
  40. extern "C" {
  41. #endif
  42. /**
  43. * \brief A variable controlling how 3D acceleration is used to accelerate the SDL screen surface.
  44. *
  45. * SDL can try to accelerate the SDL screen surface by using streaming
  46. * textures with a 3D rendering engine. This variable controls whether and
  47. * how this is done.
  48. *
  49. * This variable can be set to the following values:
  50. * "0" - Disable 3D acceleration
  51. * "1" - Enable 3D acceleration, using the default renderer.
  52. * "X" - Enable 3D acceleration, using X where X is one of the valid rendering drivers. (e.g. "direct3d", "opengl", etc.)
  53. *
  54. * By default SDL tries to make a best guess for each platform whether
  55. * to use acceleration or not.
  56. */
  57. #define SDL_HINT_FRAMEBUFFER_ACCELERATION "SDL_FRAMEBUFFER_ACCELERATION"
  58. /**
  59. * \brief A variable specifying which render driver to use.
  60. *
  61. * If the application doesn't pick a specific renderer to use, this variable
  62. * specifies the name of the preferred renderer. If the preferred renderer
  63. * can't be initialized, the normal default renderer is used.
  64. *
  65. * This variable is case insensitive and can be set to the following values:
  66. * "direct3d"
  67. * "opengl"
  68. * "opengles2"
  69. * "opengles"
  70. * "software"
  71. *
  72. * The default varies by platform, but it's the first one in the list that
  73. * is available on the current platform.
  74. */
  75. #define SDL_HINT_RENDER_DRIVER "SDL_RENDER_DRIVER"
  76. /**
  77. * \brief A variable controlling whether the OpenGL render driver uses shaders if they are available.
  78. *
  79. * This variable can be set to the following values:
  80. * "0" - Disable shaders
  81. * "1" - Enable shaders
  82. *
  83. * By default shaders are used if OpenGL supports them.
  84. */
  85. #define SDL_HINT_RENDER_OPENGL_SHADERS "SDL_RENDER_OPENGL_SHADERS"
  86. /**
  87. * \brief A variable controlling whether the Direct3D device is initialized for thread-safe operations.
  88. *
  89. * This variable can be set to the following values:
  90. * "0" - Thread-safety is not enabled (faster)
  91. * "1" - Thread-safety is enabled
  92. *
  93. * By default the Direct3D device is created with thread-safety disabled.
  94. */
  95. #define SDL_HINT_RENDER_DIRECT3D_THREADSAFE "SDL_RENDER_DIRECT3D_THREADSAFE"
  96. /**
  97. * \brief A variable controlling whether to enable Direct3D 11+'s Debug Layer.
  98. *
  99. * This variable does not have any effect on the Direct3D 9 based renderer.
  100. *
  101. * This variable can be set to the following values:
  102. * "0" - Disable Debug Layer use
  103. * "1" - Enable Debug Layer use
  104. *
  105. * By default, SDL does not use Direct3D Debug Layer.
  106. */
  107. #define SDL_HINT_RENDER_DIRECT3D11_DEBUG "SDL_RENDER_DIRECT3D11_DEBUG"
  108. /**
  109. * \brief A variable controlling the scaling policy for SDL_RenderSetLogicalSize.
  110. *
  111. * This variable can be set to the following values:
  112. * "0" or "letterbox" - Uses letterbox/sidebars to fit the entire rendering on screen
  113. * "1" or "overscan" - Will zoom the rendering so it fills the entire screen, allowing edges to be drawn offscreen
  114. *
  115. * By default letterbox is used
  116. */
  117. #define SDL_HINT_RENDER_LOGICAL_SIZE_MODE "SDL_RENDER_LOGICAL_SIZE_MODE"
  118. /**
  119. * \brief A variable controlling the scaling quality
  120. *
  121. * This variable can be set to the following values:
  122. * "0" or "nearest" - Nearest pixel sampling
  123. * "1" or "linear" - Linear filtering (supported by OpenGL and Direct3D)
  124. * "2" or "best" - Currently this is the same as "linear"
  125. *
  126. * By default nearest pixel sampling is used
  127. */
  128. #define SDL_HINT_RENDER_SCALE_QUALITY "SDL_RENDER_SCALE_QUALITY"
  129. /**
  130. * \brief A variable controlling whether updates to the SDL screen surface should be synchronized with the vertical refresh, to avoid tearing.
  131. *
  132. * This variable can be set to the following values:
  133. * "0" - Disable vsync
  134. * "1" - Enable vsync
  135. *
  136. * By default SDL does not sync screen surface updates with vertical refresh.
  137. */
  138. #define SDL_HINT_RENDER_VSYNC "SDL_RENDER_VSYNC"
  139. /**
  140. * \brief A variable controlling whether the screensaver is enabled.
  141. *
  142. * This variable can be set to the following values:
  143. * "0" - Disable screensaver
  144. * "1" - Enable screensaver
  145. *
  146. * By default SDL will disable the screensaver.
  147. */
  148. #define SDL_HINT_VIDEO_ALLOW_SCREENSAVER "SDL_VIDEO_ALLOW_SCREENSAVER"
  149. /**
  150. * \brief A variable controlling whether the X11 VidMode extension should be used.
  151. *
  152. * This variable can be set to the following values:
  153. * "0" - Disable XVidMode
  154. * "1" - Enable XVidMode
  155. *
  156. * By default SDL will use XVidMode if it is available.
  157. */
  158. #define SDL_HINT_VIDEO_X11_XVIDMODE "SDL_VIDEO_X11_XVIDMODE"
  159. /**
  160. * \brief A variable controlling whether the X11 Xinerama extension should be used.
  161. *
  162. * This variable can be set to the following values:
  163. * "0" - Disable Xinerama
  164. * "1" - Enable Xinerama
  165. *
  166. * By default SDL will use Xinerama if it is available.
  167. */
  168. #define SDL_HINT_VIDEO_X11_XINERAMA "SDL_VIDEO_X11_XINERAMA"
  169. /**
  170. * \brief A variable controlling whether the X11 XRandR extension should be used.
  171. *
  172. * This variable can be set to the following values:
  173. * "0" - Disable XRandR
  174. * "1" - Enable XRandR
  175. *
  176. * By default SDL will not use XRandR because of window manager issues.
  177. */
  178. #define SDL_HINT_VIDEO_X11_XRANDR "SDL_VIDEO_X11_XRANDR"
  179. /**
  180. * \brief A variable controlling whether the X11 _NET_WM_PING protocol should be supported.
  181. *
  182. * This variable can be set to the following values:
  183. * "0" - Disable _NET_WM_PING
  184. * "1" - Enable _NET_WM_PING
  185. *
  186. * By default SDL will use _NET_WM_PING, but for applications that know they
  187. * will not always be able to respond to ping requests in a timely manner they can
  188. * turn it off to avoid the window manager thinking the app is hung.
  189. * The hint is checked in CreateWindow.
  190. */
  191. #define SDL_HINT_VIDEO_X11_NET_WM_PING "SDL_VIDEO_X11_NET_WM_PING"
  192. /**
  193. * \brief A variable controlling whether the window frame and title bar are interactive when the cursor is hidden
  194. *
  195. * This variable can be set to the following values:
  196. * "0" - The window frame is not interactive when the cursor is hidden (no move, resize, etc)
  197. * "1" - The window frame is interactive when the cursor is hidden
  198. *
  199. * By default SDL will allow interaction with the window frame when the cursor is hidden
  200. */
  201. #define SDL_HINT_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN "SDL_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN"
  202. /**
  203. * \brief A variable to specify custom icon resource id from RC file on Windows platform
  204. */
  205. #define SDL_HINT_WINDOWS_INTRESOURCE_ICON "SDL_WINDOWS_INTRESOURCE_ICON"
  206. #define SDL_HINT_WINDOWS_INTRESOURCE_ICON_SMALL "SDL_WINDOWS_INTRESOURCE_ICON_SMALL"
  207. /**
  208. * \brief A variable controlling whether the windows message loop is processed by SDL
  209. *
  210. * This variable can be set to the following values:
  211. * "0" - The window message loop is not run
  212. * "1" - The window message loop is processed in SDL_PumpEvents()
  213. *
  214. * By default SDL will process the windows message loop
  215. */
  216. #define SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP "SDL_WINDOWS_ENABLE_MESSAGELOOP"
  217. /**
  218. * \brief A variable controlling whether grabbing input grabs the keyboard
  219. *
  220. * This variable can be set to the following values:
  221. * "0" - Grab will affect only the mouse
  222. * "1" - Grab will affect mouse and keyboard
  223. *
  224. * By default SDL will not grab the keyboard so system shortcuts still work.
  225. */
  226. #define SDL_HINT_GRAB_KEYBOARD "SDL_GRAB_KEYBOARD"
  227. /**
  228. * \brief A variable setting the speed scale for mouse motion, in floating point, when the mouse is not in relative mode
  229. */
  230. #define SDL_HINT_MOUSE_NORMAL_SPEED_SCALE "SDL_MOUSE_NORMAL_SPEED_SCALE"
  231. /**
  232. * \brief A variable setting the scale for mouse motion, in floating point, when the mouse is in relative mode
  233. */
  234. #define SDL_HINT_MOUSE_RELATIVE_SPEED_SCALE "SDL_MOUSE_RELATIVE_SPEED_SCALE"
  235. /**
  236. * \brief A variable controlling whether relative mouse mode is implemented using mouse warping
  237. *
  238. * This variable can be set to the following values:
  239. * "0" - Relative mouse mode uses raw input
  240. * "1" - Relative mouse mode uses mouse warping
  241. *
  242. * By default SDL will use raw input for relative mouse mode
  243. */
  244. #define SDL_HINT_MOUSE_RELATIVE_MODE_WARP "SDL_MOUSE_RELATIVE_MODE_WARP"
  245. /**
  246. * \brief Allow mouse click events when clicking to focus an SDL window
  247. *
  248. * This variable can be set to the following values:
  249. * "0" - Ignore mouse clicks that activate a window
  250. * "1" - Generate events for mouse clicks that activate a window
  251. *
  252. * By default SDL will ignore mouse clicks that activate a window
  253. */
  254. #define SDL_HINT_MOUSE_FOCUS_CLICKTHROUGH "SDL_MOUSE_FOCUS_CLICKTHROUGH"
  255. /**
  256. * \brief A variable controlling whether touch events should generate synthetic mouse events
  257. *
  258. * This variable can be set to the following values:
  259. * "0" - Touch events will not generate mouse events
  260. * "1" - Touch events will generate mouse events
  261. *
  262. * By default SDL will generate mouse events for touch events
  263. */
  264. #define SDL_HINT_TOUCH_MOUSE_EVENTS "SDL_TOUCH_MOUSE_EVENTS"
  265. /**
  266. * \brief Minimize your SDL_Window if it loses key focus when in fullscreen mode. Defaults to true.
  267. *
  268. */
  269. #define SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS "SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS"
  270. /**
  271. * \brief A variable controlling whether the idle timer is disabled on iOS.
  272. *
  273. * When an iOS app does not receive touches for some time, the screen is
  274. * dimmed automatically. For games where the accelerometer is the only input
  275. * this is problematic. This functionality can be disabled by setting this
  276. * hint.
  277. *
  278. * As of SDL 2.0.4, SDL_EnableScreenSaver() and SDL_DisableScreenSaver()
  279. * accomplish the same thing on iOS. They should be preferred over this hint.
  280. *
  281. * This variable can be set to the following values:
  282. * "0" - Enable idle timer
  283. * "1" - Disable idle timer
  284. */
  285. #define SDL_HINT_IDLE_TIMER_DISABLED "SDL_IOS_IDLE_TIMER_DISABLED"
  286. /**
  287. * \brief A variable controlling which orientations are allowed on iOS.
  288. *
  289. * In some circumstances it is necessary to be able to explicitly control
  290. * which UI orientations are allowed.
  291. *
  292. * This variable is a space delimited list of the following values:
  293. * "LandscapeLeft", "LandscapeRight", "Portrait" "PortraitUpsideDown"
  294. */
  295. #define SDL_HINT_ORIENTATIONS "SDL_IOS_ORIENTATIONS"
  296. /**
  297. * \brief A variable controlling whether controllers used with the Apple TV
  298. * generate UI events.
  299. *
  300. * When UI events are generated by controller input, the app will be
  301. * backgrounded when the Apple TV remote's menu button is pressed, and when the
  302. * pause or B buttons on gamepads are pressed.
  303. *
  304. * More information about properly making use of controllers for the Apple TV
  305. * can be found here:
  306. * https://developer.apple.com/tvos/human-interface-guidelines/remote-and-controllers/
  307. *
  308. * This variable can be set to the following values:
  309. * "0" - Controller input does not generate UI events (the default).
  310. * "1" - Controller input generates UI events.
  311. */
  312. #define SDL_HINT_APPLE_TV_CONTROLLER_UI_EVENTS "SDL_APPLE_TV_CONTROLLER_UI_EVENTS"
  313. /**
  314. * \brief A variable controlling whether the Apple TV remote's joystick axes
  315. * will automatically match the rotation of the remote.
  316. *
  317. * This variable can be set to the following values:
  318. * "0" - Remote orientation does not affect joystick axes (the default).
  319. * "1" - Joystick axes are based on the orientation of the remote.
  320. */
  321. #define SDL_HINT_APPLE_TV_REMOTE_ALLOW_ROTATION "SDL_APPLE_TV_REMOTE_ALLOW_ROTATION"
  322. /**
  323. * \brief A variable controlling whether the Android / iOS built-in
  324. * accelerometer should be listed as a joystick device, rather than listing
  325. * actual joysticks only.
  326. *
  327. * This variable can be set to the following values:
  328. * "0" - List only real joysticks and accept input from them
  329. * "1" - List real joysticks along with the accelerometer as if it were a 3 axis joystick (the default).
  330. */
  331. #define SDL_HINT_ACCELEROMETER_AS_JOYSTICK "SDL_ACCELEROMETER_AS_JOYSTICK"
  332. /**
  333. * \brief A variable that lets you disable the detection and use of Xinput gamepad devices
  334. *
  335. * The variable can be set to the following values:
  336. * "0" - Disable XInput detection (only uses direct input)
  337. * "1" - Enable XInput detection (the default)
  338. */
  339. #define SDL_HINT_XINPUT_ENABLED "SDL_XINPUT_ENABLED"
  340. /**
  341. * \brief A variable that causes SDL to use the old axis and button mapping for XInput devices.
  342. *
  343. * This hint is for backwards compatibility only and will be removed in SDL 2.1
  344. *
  345. * The default value is "0". This hint must be set before SDL_Init()
  346. */
  347. #define SDL_HINT_XINPUT_USE_OLD_JOYSTICK_MAPPING "SDL_XINPUT_USE_OLD_JOYSTICK_MAPPING"
  348. /**
  349. * \brief A variable that lets you manually hint extra gamecontroller db entries.
  350. *
  351. * The variable should be newline delimited rows of gamecontroller config data, see SDL_gamecontroller.h
  352. *
  353. * This hint must be set before calling SDL_Init(SDL_INIT_GAMECONTROLLER)
  354. * You can update mappings after the system is initialized with SDL_GameControllerMappingForGUID() and SDL_GameControllerAddMapping()
  355. */
  356. #define SDL_HINT_GAMECONTROLLERCONFIG "SDL_GAMECONTROLLERCONFIG"
  357. /**
  358. * \brief A variable containing a list of devices to skip when scanning for game controllers.
  359. *
  360. * The format of the string is a comma separated list of USB VID/PID pairs
  361. * in hexadecimal form, e.g.
  362. *
  363. * 0xAAAA/0xBBBB,0xCCCC/0xDDDD
  364. *
  365. * The variable can also take the form of @file, in which case the named
  366. * file will be loaded and interpreted as the value of the variable.
  367. */
  368. #define SDL_HINT_GAMECONTROLLER_IGNORE_DEVICES "SDL_GAMECONTROLLER_IGNORE_DEVICES"
  369. /**
  370. * \brief If set, all devices will be skipped when scanning for game controllers except for the ones listed in this variable.
  371. *
  372. * The format of the string is a comma separated list of USB VID/PID pairs
  373. * in hexadecimal form, e.g.
  374. *
  375. * 0xAAAA/0xBBBB,0xCCCC/0xDDDD
  376. *
  377. * The variable can also take the form of @file, in which case the named
  378. * file will be loaded and interpreted as the value of the variable.
  379. */
  380. #define SDL_HINT_GAMECONTROLLER_IGNORE_DEVICES_EXCEPT "SDL_GAMECONTROLLER_IGNORE_DEVICES_EXCEPT"
  381. /**
  382. * \brief A variable that lets you enable joystick (and gamecontroller) events even when your app is in the background.
  383. *
  384. * The variable can be set to the following values:
  385. * "0" - Disable joystick & gamecontroller input events when the
  386. * application is in the background.
  387. * "1" - Enable joystick & gamecontroller input events when the
  388. * application is in the background.
  389. *
  390. * The default value is "0". This hint may be set at any time.
  391. */
  392. #define SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS "SDL_JOYSTICK_ALLOW_BACKGROUND_EVENTS"
  393. /**
  394. * \brief If set to "0" then never set the top most bit on a SDL Window, even if the video mode expects it.
  395. * This is a debugging aid for developers and not expected to be used by end users. The default is "1"
  396. *
  397. * This variable can be set to the following values:
  398. * "0" - don't allow topmost
  399. * "1" - allow topmost
  400. */
  401. #define SDL_HINT_ALLOW_TOPMOST "SDL_ALLOW_TOPMOST"
  402. /**
  403. * \brief A variable that controls the timer resolution, in milliseconds.
  404. *
  405. * The higher resolution the timer, the more frequently the CPU services
  406. * timer interrupts, and the more precise delays are, but this takes up
  407. * power and CPU time. This hint is only used on Windows 7 and earlier.
  408. *
  409. * See this blog post for more information:
  410. * http://randomascii.wordpress.com/2013/07/08/windows-timer-resolution-megawatts-wasted/
  411. *
  412. * If this variable is set to "0", the system timer resolution is not set.
  413. *
  414. * The default value is "1". This hint may be set at any time.
  415. */
  416. #define SDL_HINT_TIMER_RESOLUTION "SDL_TIMER_RESOLUTION"
  417. /**
  418. * \brief A variable describing the content orientation on QtWayland-based platforms.
  419. *
  420. * On QtWayland platforms, windows are rotated client-side to allow for custom
  421. * transitions. In order to correctly position overlays (e.g. volume bar) and
  422. * gestures (e.g. events view, close/minimize gestures), the system needs to
  423. * know in which orientation the application is currently drawing its contents.
  424. *
  425. * This does not cause the window to be rotated or resized, the application
  426. * needs to take care of drawing the content in the right orientation (the
  427. * framebuffer is always in portrait mode).
  428. *
  429. * This variable can be one of the following values:
  430. * "primary" (default), "portrait", "landscape", "inverted-portrait", "inverted-landscape"
  431. */
  432. #define SDL_HINT_QTWAYLAND_CONTENT_ORIENTATION "SDL_QTWAYLAND_CONTENT_ORIENTATION"
  433. /**
  434. * \brief Flags to set on QtWayland windows to integrate with the native window manager.
  435. *
  436. * On QtWayland platforms, this hint controls the flags to set on the windows.
  437. * For example, on Sailfish OS "OverridesSystemGestures" disables swipe gestures.
  438. *
  439. * This variable is a space-separated list of the following values (empty = no flags):
  440. * "OverridesSystemGestures", "StaysOnTop", "BypassWindowManager"
  441. */
  442. #define SDL_HINT_QTWAYLAND_WINDOW_FLAGS "SDL_QTWAYLAND_WINDOW_FLAGS"
  443. /**
  444. * \brief A string specifying SDL's threads stack size in bytes or "0" for the backend's default size
  445. *
  446. * Use this hint in case you need to set SDL's threads stack size to other than the default.
  447. * This is specially useful if you build SDL against a non glibc libc library (such as musl) which
  448. * provides a relatively small default thread stack size (a few kilobytes versus the default 8MB glibc uses).
  449. * Support for this hint is currently available only in the pthread, Windows, and PSP backend.
  450. */
  451. #define SDL_HINT_THREAD_STACK_SIZE "SDL_THREAD_STACK_SIZE"
  452. /**
  453. * \brief If set to 1, then do not allow high-DPI windows. ("Retina" on Mac and iOS)
  454. */
  455. #define SDL_HINT_VIDEO_HIGHDPI_DISABLED "SDL_VIDEO_HIGHDPI_DISABLED"
  456. /**
  457. * \brief A variable that determines whether ctrl+click should generate a right-click event on Mac
  458. *
  459. * If present, holding ctrl while left clicking will generate a right click
  460. * event when on Mac.
  461. */
  462. #define SDL_HINT_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK "SDL_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK"
  463. /**
  464. * \brief A variable specifying which shader compiler to preload when using the Chrome ANGLE binaries
  465. *
  466. * SDL has EGL and OpenGL ES2 support on Windows via the ANGLE project. It
  467. * can use two different sets of binaries, those compiled by the user from source
  468. * or those provided by the Chrome browser. In the later case, these binaries require
  469. * that SDL loads a DLL providing the shader compiler.
  470. *
  471. * This variable can be set to the following values:
  472. * "d3dcompiler_46.dll" - default, best for Vista or later.
  473. * "d3dcompiler_43.dll" - for XP support.
  474. * "none" - do not load any library, useful if you compiled ANGLE from source and included the compiler in your binaries.
  475. *
  476. */
  477. #define SDL_HINT_VIDEO_WIN_D3DCOMPILER "SDL_VIDEO_WIN_D3DCOMPILER"
  478. /**
  479. * \brief A variable that is the address of another SDL_Window* (as a hex string formatted with "%p").
  480. *
  481. * If this hint is set before SDL_CreateWindowFrom() and the SDL_Window* it is set to has
  482. * SDL_WINDOW_OPENGL set (and running on WGL only, currently), then two things will occur on the newly
  483. * created SDL_Window:
  484. *
  485. * 1. Its pixel format will be set to the same pixel format as this SDL_Window. This is
  486. * needed for example when sharing an OpenGL context across multiple windows.
  487. *
  488. * 2. The flag SDL_WINDOW_OPENGL will be set on the new window so it can be used for
  489. * OpenGL rendering.
  490. *
  491. * This variable can be set to the following values:
  492. * The address (as a string "%p") of the SDL_Window* that new windows created with SDL_CreateWindowFrom() should
  493. * share a pixel format with.
  494. */
  495. #define SDL_HINT_VIDEO_WINDOW_SHARE_PIXEL_FORMAT "SDL_VIDEO_WINDOW_SHARE_PIXEL_FORMAT"
  496. /**
  497. * \brief A URL to a WinRT app's privacy policy
  498. *
  499. * All network-enabled WinRT apps must make a privacy policy available to its
  500. * users. On Windows 8, 8.1, and RT, Microsoft mandates that this policy be
  501. * be available in the Windows Settings charm, as accessed from within the app.
  502. * SDL provides code to add a URL-based link there, which can point to the app's
  503. * privacy policy.
  504. *
  505. * To setup a URL to an app's privacy policy, set SDL_HINT_WINRT_PRIVACY_POLICY_URL
  506. * before calling any SDL_Init() functions. The contents of the hint should
  507. * be a valid URL. For example, "http://www.example.com".
  508. *
  509. * The default value is "", which will prevent SDL from adding a privacy policy
  510. * link to the Settings charm. This hint should only be set during app init.
  511. *
  512. * The label text of an app's "Privacy Policy" link may be customized via another
  513. * hint, SDL_HINT_WINRT_PRIVACY_POLICY_LABEL.
  514. *
  515. * Please note that on Windows Phone, Microsoft does not provide standard UI
  516. * for displaying a privacy policy link, and as such, SDL_HINT_WINRT_PRIVACY_POLICY_URL
  517. * will not get used on that platform. Network-enabled phone apps should display
  518. * their privacy policy through some other, in-app means.
  519. */
  520. #define SDL_HINT_WINRT_PRIVACY_POLICY_URL "SDL_WINRT_PRIVACY_POLICY_URL"
  521. /** \brief Label text for a WinRT app's privacy policy link
  522. *
  523. * Network-enabled WinRT apps must include a privacy policy. On Windows 8, 8.1, and RT,
  524. * Microsoft mandates that this policy be available via the Windows Settings charm.
  525. * SDL provides code to add a link there, with its label text being set via the
  526. * optional hint, SDL_HINT_WINRT_PRIVACY_POLICY_LABEL.
  527. *
  528. * Please note that a privacy policy's contents are not set via this hint. A separate
  529. * hint, SDL_HINT_WINRT_PRIVACY_POLICY_URL, is used to link to the actual text of the
  530. * policy.
  531. *
  532. * The contents of this hint should be encoded as a UTF8 string.
  533. *
  534. * The default value is "Privacy Policy". This hint should only be set during app
  535. * initialization, preferably before any calls to SDL_Init().
  536. *
  537. * For additional information on linking to a privacy policy, see the documentation for
  538. * SDL_HINT_WINRT_PRIVACY_POLICY_URL.
  539. */
  540. #define SDL_HINT_WINRT_PRIVACY_POLICY_LABEL "SDL_WINRT_PRIVACY_POLICY_LABEL"
  541. /** \brief Allows back-button-press events on Windows Phone to be marked as handled
  542. *
  543. * Windows Phone devices typically feature a Back button. When pressed,
  544. * the OS will emit back-button-press events, which apps are expected to
  545. * handle in an appropriate manner. If apps do not explicitly mark these
  546. * events as 'Handled', then the OS will invoke its default behavior for
  547. * unhandled back-button-press events, which on Windows Phone 8 and 8.1 is to
  548. * terminate the app (and attempt to switch to the previous app, or to the
  549. * device's home screen).
  550. *
  551. * Setting the SDL_HINT_WINRT_HANDLE_BACK_BUTTON hint to "1" will cause SDL
  552. * to mark back-button-press events as Handled, if and when one is sent to
  553. * the app.
  554. *
  555. * Internally, Windows Phone sends back button events as parameters to
  556. * special back-button-press callback functions. Apps that need to respond
  557. * to back-button-press events are expected to register one or more
  558. * callback functions for such, shortly after being launched (during the
  559. * app's initialization phase). After the back button is pressed, the OS
  560. * will invoke these callbacks. If the app's callback(s) do not explicitly
  561. * mark the event as handled by the time they return, or if the app never
  562. * registers one of these callback, the OS will consider the event
  563. * un-handled, and it will apply its default back button behavior (terminate
  564. * the app).
  565. *
  566. * SDL registers its own back-button-press callback with the Windows Phone
  567. * OS. This callback will emit a pair of SDL key-press events (SDL_KEYDOWN
  568. * and SDL_KEYUP), each with a scancode of SDL_SCANCODE_AC_BACK, after which
  569. * it will check the contents of the hint, SDL_HINT_WINRT_HANDLE_BACK_BUTTON.
  570. * If the hint's value is set to "1", the back button event's Handled
  571. * property will get set to 'true'. If the hint's value is set to something
  572. * else, or if it is unset, SDL will leave the event's Handled property
  573. * alone. (By default, the OS sets this property to 'false', to note.)
  574. *
  575. * SDL apps can either set SDL_HINT_WINRT_HANDLE_BACK_BUTTON well before a
  576. * back button is pressed, or can set it in direct-response to a back button
  577. * being pressed.
  578. *
  579. * In order to get notified when a back button is pressed, SDL apps should
  580. * register a callback function with SDL_AddEventWatch(), and have it listen
  581. * for SDL_KEYDOWN events that have a scancode of SDL_SCANCODE_AC_BACK.
  582. * (Alternatively, SDL_KEYUP events can be listened-for. Listening for
  583. * either event type is suitable.) Any value of SDL_HINT_WINRT_HANDLE_BACK_BUTTON
  584. * set by such a callback, will be applied to the OS' current
  585. * back-button-press event.
  586. *
  587. * More details on back button behavior in Windows Phone apps can be found
  588. * at the following page, on Microsoft's developer site:
  589. * http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj247550(v=vs.105).aspx
  590. */
  591. #define SDL_HINT_WINRT_HANDLE_BACK_BUTTON "SDL_WINRT_HANDLE_BACK_BUTTON"
  592. /**
  593. * \brief A variable that dictates policy for fullscreen Spaces on Mac OS X.
  594. *
  595. * This hint only applies to Mac OS X.
  596. *
  597. * The variable can be set to the following values:
  598. * "0" - Disable Spaces support (FULLSCREEN_DESKTOP won't use them and
  599. * SDL_WINDOW_RESIZABLE windows won't offer the "fullscreen"
  600. * button on their titlebars).
  601. * "1" - Enable Spaces support (FULLSCREEN_DESKTOP will use them and
  602. * SDL_WINDOW_RESIZABLE windows will offer the "fullscreen"
  603. * button on their titlebars).
  604. *
  605. * The default value is "1". Spaces are disabled regardless of this hint if
  606. * the OS isn't at least Mac OS X Lion (10.7). This hint must be set before
  607. * any windows are created.
  608. */
  609. #define SDL_HINT_VIDEO_MAC_FULLSCREEN_SPACES "SDL_VIDEO_MAC_FULLSCREEN_SPACES"
  610. /**
  611. * \brief When set don't force the SDL app to become a foreground process
  612. *
  613. * This hint only applies to Mac OS X.
  614. *
  615. */
  616. #define SDL_HINT_MAC_BACKGROUND_APP "SDL_MAC_BACKGROUND_APP"
  617. /**
  618. * \brief Android APK expansion main file version. Should be a string number like "1", "2" etc.
  619. *
  620. * Must be set together with SDL_HINT_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION.
  621. *
  622. * If both hints were set then SDL_RWFromFile() will look into expansion files
  623. * after a given relative path was not found in the internal storage and assets.
  624. *
  625. * By default this hint is not set and the APK expansion files are not searched.
  626. */
  627. #define SDL_HINT_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION "SDL_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION"
  628. /**
  629. * \brief Android APK expansion patch file version. Should be a string number like "1", "2" etc.
  630. *
  631. * Must be set together with SDL_HINT_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION.
  632. *
  633. * If both hints were set then SDL_RWFromFile() will look into expansion files
  634. * after a given relative path was not found in the internal storage and assets.
  635. *
  636. * By default this hint is not set and the APK expansion files are not searched.
  637. */
  638. #define SDL_HINT_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION "SDL_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION"
  639. /**
  640. * \brief A variable to control whether certain IMEs should handle text editing internally instead of sending SDL_TEXTEDITING events.
  641. *
  642. * The variable can be set to the following values:
  643. * "0" - SDL_TEXTEDITING events are sent, and it is the application's
  644. * responsibility to render the text from these events and
  645. * differentiate it somehow from committed text. (default)
  646. * "1" - If supported by the IME then SDL_TEXTEDITING events are not sent,
  647. * and text that is being composed will be rendered in its own UI.
  648. */
  649. #define SDL_HINT_IME_INTERNAL_EDITING "SDL_IME_INTERNAL_EDITING"
  650. /**
  651. * \brief A variable to control whether mouse and touch events are to be treated together or separately
  652. *
  653. * The variable can be set to the following values:
  654. * "0" - Mouse events will be handled as touch events, and touch will raise fake mouse
  655. * events. This is the behaviour of SDL <= 2.0.3. (default)
  656. * "1" - Mouse events will be handled separately from pure touch events.
  657. *
  658. * The value of this hint is used at runtime, so it can be changed at any time.
  659. */
  660. #define SDL_HINT_ANDROID_SEPARATE_MOUSE_AND_TOUCH "SDL_ANDROID_SEPARATE_MOUSE_AND_TOUCH"
  661. /**
  662. * \brief override the binding element for keyboard inputs for Emscripten builds
  663. *
  664. * This hint only applies to the emscripten platform
  665. *
  666. * The variable can be one of
  667. * "#window" - The javascript window object (this is the default)
  668. * "#document" - The javascript document object
  669. * "#screen" - the javascript window.screen object
  670. * "#canvas" - the WebGL canvas element
  671. * any other string without a leading # sign applies to the element on the page with that ID.
  672. */
  673. #define SDL_HINT_EMSCRIPTEN_KEYBOARD_ELEMENT "SDL_EMSCRIPTEN_KEYBOARD_ELEMENT"
  674. /**
  675. * \brief Tell SDL not to catch the SIGINT or SIGTERM signals.
  676. *
  677. * This hint only applies to Unix-like platforms.
  678. *
  679. * The variable can be set to the following values:
  680. * "0" - SDL will install a SIGINT and SIGTERM handler, and when it
  681. * catches a signal, convert it into an SDL_QUIT event.
  682. * "1" - SDL will not install a signal handler at all.
  683. */
  684. #define SDL_HINT_NO_SIGNAL_HANDLERS "SDL_NO_SIGNAL_HANDLERS"
  685. /**
  686. * \brief Tell SDL not to generate window-close events for Alt+F4 on Windows.
  687. *
  688. * The variable can be set to the following values:
  689. * "0" - SDL will generate a window-close event when it sees Alt+F4.
  690. * "1" - SDL will only do normal key handling for Alt+F4.
  691. */
  692. #define SDL_HINT_WINDOWS_NO_CLOSE_ON_ALT_F4 "SDL_WINDOWS_NO_CLOSE_ON_ALT_F4"
  693. /**
  694. * \brief Prevent SDL from using version 4 of the bitmap header when saving BMPs.
  695. *
  696. * The bitmap header version 4 is required for proper alpha channel support and
  697. * SDL will use it when required. Should this not be desired, this hint can
  698. * force the use of the 40 byte header version which is supported everywhere.
  699. *
  700. * The variable can be set to the following values:
  701. * "0" - Surfaces with a colorkey or an alpha channel are saved to a
  702. * 32-bit BMP file with an alpha mask. SDL will use the bitmap
  703. * header version 4 and set the alpha mask accordingly.
  704. * "1" - Surfaces with a colorkey or an alpha channel are saved to a
  705. * 32-bit BMP file without an alpha mask. The alpha channel data
  706. * will be in the file, but applications are going to ignore it.
  707. *
  708. * The default value is "0".
  709. */
  710. #define SDL_HINT_BMP_SAVE_LEGACY_FORMAT "SDL_BMP_SAVE_LEGACY_FORMAT"
  711. /**
  712. * \brief Tell SDL not to name threads on Windows with the 0x406D1388 Exception.
  713. * The 0x406D1388 Exception is a trick used to inform Visual Studio of a
  714. * thread's name, but it tends to cause problems with other debuggers,
  715. * and the .NET runtime. Note that SDL 2.0.6 and later will still use
  716. * the (safer) SetThreadDescription API, introduced in the Windows 10
  717. * Creators Update, if available.
  718. *
  719. * The variable can be set to the following values:
  720. * "0" - SDL will raise the 0x406D1388 Exception to name threads.
  721. * This is the default behavior of SDL <= 2.0.4.
  722. * "1" - SDL will not raise this exception, and threads will be unnamed. (default)
  723. * This is necessary with .NET languages or debuggers that aren't Visual Studio.
  724. */
  725. #define SDL_HINT_WINDOWS_DISABLE_THREAD_NAMING "SDL_WINDOWS_DISABLE_THREAD_NAMING"
  726. /**
  727. * \brief Tell SDL which Dispmanx layer to use on a Raspberry PI
  728. *
  729. * Also known as Z-order. The variable can take a negative or positive value.
  730. * The default is 10000.
  731. */
  732. #define SDL_HINT_RPI_VIDEO_LAYER "SDL_RPI_VIDEO_LAYER"
  733. /**
  734. * \brief A variable controlling what driver to use for OpenGL ES contexts.
  735. *
  736. * On some platforms, currently Windows and X11, OpenGL drivers may support
  737. * creating contexts with an OpenGL ES profile. By default SDL uses these
  738. * profiles, when available, otherwise it attempts to load an OpenGL ES
  739. * library, e.g. that provided by the ANGLE project. This variable controls
  740. * whether SDL follows this default behaviour or will always load an
  741. * OpenGL ES library.
  742. *
  743. * Circumstances where this is useful include
  744. * - Testing an app with a particular OpenGL ES implementation, e.g ANGLE,
  745. * or emulator, e.g. those from ARM, Imagination or Qualcomm.
  746. * - Resolving OpenGL ES function addresses at link time by linking with
  747. * the OpenGL ES library instead of querying them at run time with
  748. * SDL_GL_GetProcAddress().
  749. *
  750. * Caution: for an application to work with the default behaviour across
  751. * different OpenGL drivers it must query the OpenGL ES function
  752. * addresses at run time using SDL_GL_GetProcAddress().
  753. *
  754. * This variable is ignored on most platforms because OpenGL ES is native
  755. * or not supported.
  756. *
  757. * This variable can be set to the following values:
  758. * "0" - Use ES profile of OpenGL, if available. (Default when not set.)
  759. * "1" - Load OpenGL ES library using the default library names.
  760. *
  761. */
  762. #define SDL_HINT_OPENGL_ES_DRIVER "SDL_OPENGL_ES_DRIVER"
  763. /**
  764. * \brief A variable controlling speed/quality tradeoff of audio resampling.
  765. *
  766. * If available, SDL can use libsamplerate ( http://www.mega-nerd.com/SRC/ )
  767. * to handle audio resampling. There are different resampling modes available
  768. * that produce different levels of quality, using more CPU.
  769. *
  770. * If this hint isn't specified to a valid setting, or libsamplerate isn't
  771. * available, SDL will use the default, internal resampling algorithm.
  772. *
  773. * Note that this is currently only applicable to resampling audio that is
  774. * being written to a device for playback or audio being read from a device
  775. * for capture. SDL_AudioCVT always uses the default resampler (although this
  776. * might change for SDL 2.1).
  777. *
  778. * This hint is currently only checked at audio subsystem initialization.
  779. *
  780. * This variable can be set to the following values:
  781. *
  782. * "0" or "default" - Use SDL's internal resampling (Default when not set - low quality, fast)
  783. * "1" or "fast" - Use fast, slightly higher quality resampling, if available
  784. * "2" or "medium" - Use medium quality resampling, if available
  785. * "3" or "best" - Use high quality resampling, if available
  786. */
  787. #define SDL_HINT_AUDIO_RESAMPLING_MODE "SDL_AUDIO_RESAMPLING_MODE"
  788. /**
  789. * \brief A variable controlling the audio category on iOS and Mac OS X
  790. *
  791. * This variable can be set to the following values:
  792. *
  793. * "ambient" - Use the AVAudioSessionCategoryAmbient audio category, will be muted by the phone mute switch (default)
  794. * "playback" - Use the AVAudioSessionCategoryPlayback category
  795. *
  796. * For more information, see Apple's documentation:
  797. * https://developer.apple.com/library/content/documentation/Audio/Conceptual/AudioSessionProgrammingGuide/AudioSessionCategoriesandModes/AudioSessionCategoriesandModes.html
  798. */
  799. #define SDL_HINT_AUDIO_CATEGORY "SDL_AUDIO_CATEGORY"
  800. /**
  801. * \brief An enumeration of hint priorities
  802. */
  803. typedef enum
  804. {
  805. SDL_HINT_DEFAULT,
  806. SDL_HINT_NORMAL,
  807. SDL_HINT_OVERRIDE
  808. } SDL_HintPriority;
  809. /**
  810. * \brief Set a hint with a specific priority
  811. *
  812. * The priority controls the behavior when setting a hint that already
  813. * has a value. Hints will replace existing hints of their priority and
  814. * lower. Environment variables are considered to have override priority.
  815. *
  816. * \return SDL_TRUE if the hint was set, SDL_FALSE otherwise
  817. */
  818. extern DECLSPEC SDL_bool SDLCALL SDL_SetHintWithPriority(const char *name,
  819. const char *value,
  820. SDL_HintPriority priority);
  821. /**
  822. * \brief Set a hint with normal priority
  823. *
  824. * \return SDL_TRUE if the hint was set, SDL_FALSE otherwise
  825. */
  826. extern DECLSPEC SDL_bool SDLCALL SDL_SetHint(const char *name,
  827. const char *value);
  828. /**
  829. * \brief Get a hint
  830. *
  831. * \return The string value of a hint variable.
  832. */
  833. extern DECLSPEC const char * SDLCALL SDL_GetHint(const char *name);
  834. /**
  835. * \brief Get a hint
  836. *
  837. * \return The boolean value of a hint variable.
  838. */
  839. extern DECLSPEC SDL_bool SDLCALL SDL_GetHintBoolean(const char *name, SDL_bool default_value);
  840. /**
  841. * \brief type definition of the hint callback function.
  842. */
  843. typedef void (SDLCALL *SDL_HintCallback)(void *userdata, const char *name, const char *oldValue, const char *newValue);
  844. /**
  845. * \brief Add a function to watch a particular hint
  846. *
  847. * \param name The hint to watch
  848. * \param callback The function to call when the hint value changes
  849. * \param userdata A pointer to pass to the callback function
  850. */
  851. extern DECLSPEC void SDLCALL SDL_AddHintCallback(const char *name,
  852. SDL_HintCallback callback,
  853. void *userdata);
  854. /**
  855. * \brief Remove a function watching a particular hint
  856. *
  857. * \param name The hint being watched
  858. * \param callback The function being called when the hint value changes
  859. * \param userdata A pointer being passed to the callback function
  860. */
  861. extern DECLSPEC void SDLCALL SDL_DelHintCallback(const char *name,
  862. SDL_HintCallback callback,
  863. void *userdata);
  864. /**
  865. * \brief Clear all hints
  866. *
  867. * This function is called during SDL_Quit() to free stored hints.
  868. */
  869. extern DECLSPEC void SDLCALL SDL_ClearHints(void);
  870. /* Ends C function definitions when using C++ */
  871. #ifdef __cplusplus
  872. }
  873. #endif
  874. #include "close_code.h"
  875. #endif /* SDL_hints_h_ */
  876. /* vi: set ts=4 sw=4 expandtab: */