SDL_hints.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2014 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_HINT_RENDER_DIRECT3D11_DEBUG"
  108. /**
  109. * \brief A variable controlling the scaling quality
  110. *
  111. * This variable can be set to the following values:
  112. * "0" or "nearest" - Nearest pixel sampling
  113. * "1" or "linear" - Linear filtering (supported by OpenGL and Direct3D)
  114. * "2" or "best" - Currently this is the same as "linear"
  115. *
  116. * By default nearest pixel sampling is used
  117. */
  118. #define SDL_HINT_RENDER_SCALE_QUALITY "SDL_RENDER_SCALE_QUALITY"
  119. /**
  120. * \brief A variable controlling whether updates to the SDL screen surface should be synchronized with the vertical refresh, to avoid tearing.
  121. *
  122. * This variable can be set to the following values:
  123. * "0" - Disable vsync
  124. * "1" - Enable vsync
  125. *
  126. * By default SDL does not sync screen surface updates with vertical refresh.
  127. */
  128. #define SDL_HINT_RENDER_VSYNC "SDL_RENDER_VSYNC"
  129. /**
  130. * \brief A variable controlling whether the screensaver is enabled.
  131. *
  132. * This variable can be set to the following values:
  133. * "0" - Disable screensaver
  134. * "1" - Enable screensaver
  135. *
  136. * By default SDL will disable the screensaver.
  137. */
  138. #define SDL_HINT_VIDEO_ALLOW_SCREENSAVER "SDL_VIDEO_ALLOW_SCREENSAVER"
  139. /**
  140. * \brief A variable controlling whether the X11 VidMode extension should be used.
  141. *
  142. * This variable can be set to the following values:
  143. * "0" - Disable XVidMode
  144. * "1" - Enable XVidMode
  145. *
  146. * By default SDL will use XVidMode if it is available.
  147. */
  148. #define SDL_HINT_VIDEO_X11_XVIDMODE "SDL_VIDEO_X11_XVIDMODE"
  149. /**
  150. * \brief A variable controlling whether the X11 Xinerama extension should be used.
  151. *
  152. * This variable can be set to the following values:
  153. * "0" - Disable Xinerama
  154. * "1" - Enable Xinerama
  155. *
  156. * By default SDL will use Xinerama if it is available.
  157. */
  158. #define SDL_HINT_VIDEO_X11_XINERAMA "SDL_VIDEO_X11_XINERAMA"
  159. /**
  160. * \brief A variable controlling whether the X11 XRandR extension should be used.
  161. *
  162. * This variable can be set to the following values:
  163. * "0" - Disable XRandR
  164. * "1" - Enable XRandR
  165. *
  166. * By default SDL will not use XRandR because of window manager issues.
  167. */
  168. #define SDL_HINT_VIDEO_X11_XRANDR "SDL_VIDEO_X11_XRANDR"
  169. /**
  170. * \brief A variable controlling whether grabbing input grabs the keyboard
  171. *
  172. * This variable can be set to the following values:
  173. * "0" - Grab will affect only the mouse
  174. * "1" - Grab will affect mouse and keyboard
  175. *
  176. * By default SDL will not grab the keyboard so system shortcuts still work.
  177. */
  178. #define SDL_HINT_GRAB_KEYBOARD "SDL_GRAB_KEYBOARD"
  179. /**
  180. * \brief A variable controlling whether relative mouse mode is implemented using mouse warping
  181. *
  182. * This variable can be set to the following values:
  183. * "0" - Relative mouse mode uses raw input
  184. * "1" - Relative mouse mode uses mouse warping
  185. *
  186. * By default SDL will use raw input for relative mouse mode
  187. */
  188. #define SDL_HINT_MOUSE_RELATIVE_MODE_WARP "SDL_MOUSE_RELATIVE_MODE_WARP"
  189. /**
  190. * \brief Minimize your SDL_Window if it loses key focus when in fullscreen mode. Defaults to true.
  191. *
  192. */
  193. #define SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS "SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS"
  194. /**
  195. * \brief A variable controlling whether the idle timer is disabled on iOS.
  196. *
  197. * When an iOS app does not receive touches for some time, the screen is
  198. * dimmed automatically. For games where the accelerometer is the only input
  199. * this is problematic. This functionality can be disabled by setting this
  200. * hint.
  201. *
  202. * This variable can be set to the following values:
  203. * "0" - Enable idle timer
  204. * "1" - Disable idle timer
  205. */
  206. #define SDL_HINT_IDLE_TIMER_DISABLED "SDL_IOS_IDLE_TIMER_DISABLED"
  207. /**
  208. * \brief A variable controlling which orientations are allowed on iOS.
  209. *
  210. * In some circumstances it is necessary to be able to explicitly control
  211. * which UI orientations are allowed.
  212. *
  213. * This variable is a space delimited list of the following values:
  214. * "LandscapeLeft", "LandscapeRight", "Portrait" "PortraitUpsideDown"
  215. */
  216. #define SDL_HINT_ORIENTATIONS "SDL_IOS_ORIENTATIONS"
  217. /**
  218. * \brief A variable controlling whether an Android built-in accelerometer should be
  219. * listed as a joystick device, rather than listing actual joysticks only.
  220. *
  221. * This variable can be set to the following values:
  222. * "0" - List only real joysticks and accept input from them
  223. * "1" - List real joysticks along with the accelerometer as if it were a 3 axis joystick (the default).
  224. */
  225. #define SDL_HINT_ACCELEROMETER_AS_JOYSTICK "SDL_ACCELEROMETER_AS_JOYSTICK"
  226. /**
  227. * \brief A variable that lets you disable the detection and use of Xinput gamepad devices
  228. *
  229. * The variable can be set to the following values:
  230. * "0" - Disable XInput detection (only uses direct input)
  231. * "1" - Enable XInput detection (the default)
  232. */
  233. #define SDL_HINT_XINPUT_ENABLED "SDL_XINPUT_ENABLED"
  234. /**
  235. * \brief A variable that lets you manually hint extra gamecontroller db entries
  236. *
  237. * The variable should be newline delimited rows of gamecontroller config data, see SDL_gamecontroller.h
  238. *
  239. * This hint must be set before calling SDL_Init(SDL_INIT_GAMECONTROLLER)
  240. * You can update mappings after the system is initialized with SDL_GameControllerMappingForGUID() and SDL_GameControllerAddMapping()
  241. */
  242. #define SDL_HINT_GAMECONTROLLERCONFIG "SDL_GAMECONTROLLERCONFIG"
  243. /**
  244. * \brief A variable that lets you enable joystick (and gamecontroller) events even when your app is in the background.
  245. *
  246. * The variable can be set to the following values:
  247. * "0" - Disable joystick & gamecontroller input events when the
  248. * application is in the background.
  249. * "1" - Enable joystick & gamecontroller input events when the
  250. * application is in the background.
  251. *
  252. * The default value is "0". This hint may be set at any time.
  253. */
  254. #define SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS "SDL_JOYSTICK_ALLOW_BACKGROUND_EVENTS"
  255. /**
  256. * \brief If set to 0 then never set the top most bit on a SDL Window, even if the video mode expects it.
  257. * This is a debugging aid for developers and not expected to be used by end users. The default is "1"
  258. *
  259. * This variable can be set to the following values:
  260. * "0" - don't allow topmost
  261. * "1" - allow topmost
  262. */
  263. #define SDL_HINT_ALLOW_TOPMOST "SDL_ALLOW_TOPMOST"
  264. /**
  265. * \brief A variable that controls the timer resolution, in milliseconds.
  266. *
  267. * The higher resolution the timer, the more frequently the CPU services
  268. * timer interrupts, and the more precise delays are, but this takes up
  269. * power and CPU time. This hint is only used on Windows 7 and earlier.
  270. *
  271. * See this blog post for more information:
  272. * http://randomascii.wordpress.com/2013/07/08/windows-timer-resolution-megawatts-wasted/
  273. *
  274. * If this variable is set to "0", the system timer resolution is not set.
  275. *
  276. * The default value is "1". This hint may be set at any time.
  277. */
  278. #define SDL_HINT_TIMER_RESOLUTION "SDL_TIMER_RESOLUTION"
  279. /**
  280. * \brief If set to 1, then do not allow high-DPI windows. ("Retina" on Mac)
  281. */
  282. #define SDL_HINT_VIDEO_HIGHDPI_DISABLED "SDL_VIDEO_HIGHDPI_DISABLED"
  283. /**
  284. * \brief A variable that determines whether ctrl+click should generate a right-click event on Mac
  285. *
  286. * If present, holding ctrl while left clicking will generate a right click
  287. * event when on Mac.
  288. */
  289. #define SDL_HINT_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK "SDL_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK"
  290. /**
  291. * \brief A variable specifying which shader compiler to preload when using the Chrome ANGLE binaries
  292. *
  293. * SDL has EGL and OpenGL ES2 support on Windows via the ANGLE project. It
  294. * can use two different sets of binaries, those compiled by the user from source
  295. * or those provided by the Chrome browser. In the later case, these binaries require
  296. * that SDL loads a DLL providing the shader compiler.
  297. *
  298. * This variable can be set to the following values:
  299. * "d3dcompiler_46.dll" - default, best for Vista or later.
  300. * "d3dcompiler_43.dll" - for XP support.
  301. * "none" - do not load any library, useful if you compiled ANGLE from source and included the compiler in your binaries.
  302. *
  303. */
  304. #define SDL_HINT_VIDEO_WIN_D3DCOMPILER "SDL_VIDEO_WIN_D3DCOMPILER"
  305. /**
  306. * \brief A variable that is the address of another SDL_Window* (as a hex string formatted with "%p").
  307. *
  308. * If this hint is set before SDL_CreateWindowFrom() and the SDL_Window* it is set to has
  309. * SDL_WINDOW_OPENGL set (and running on WGL only, currently), then two things will occur on the newly
  310. * created SDL_Window:
  311. *
  312. * 1. Its pixel format will be set to the same pixel format as this SDL_Window. This is
  313. * needed for example when sharing an OpenGL context across multiple windows.
  314. *
  315. * 2. The flag SDL_WINDOW_OPENGL will be set on the new window so it can be used for
  316. * OpenGL rendering.
  317. *
  318. * This variable can be set to the following values:
  319. * The address (as a string "%p") of the SDL_Window* that new windows created with SDL_CreateWindowFrom() should
  320. * share a pixel format with.
  321. */
  322. #define SDL_HINT_VIDEO_WINDOW_SHARE_PIXEL_FORMAT "SDL_VIDEO_WINDOW_SHARE_PIXEL_FORMAT"
  323. /*
  324. * \brief A URL to a WinRT app's privacy policy
  325. *
  326. * All network-enabled WinRT apps must make a privacy policy available to its
  327. * users. On Windows 8, 8.1, and RT, Microsoft mandates that this policy be
  328. * be available in the Windows Settings charm, as accessed from within the app.
  329. * SDL provides code to add a URL-based link there, which can point to the app's
  330. * privacy policy.
  331. *
  332. * To setup a URL to an app's privacy policy, set SDL_HINT_WINRT_PRIVACY_POLICY_URL
  333. * before calling any SDL_Init functions. The contents of the hint should
  334. * be a valid URL. For example, "http://www.example.com".
  335. *
  336. * The default value is "", which will prevent SDL from adding a privacy policy
  337. * link to the Settings charm. This hint should only be set during app init.
  338. *
  339. * The label text of an app's "Privacy Policy" link may be customized via another
  340. * hint, SDL_HINT_WINRT_PRIVACY_POLICY_LABEL.
  341. *
  342. * Please note that on Windows Phone, Microsoft does not provide standard UI
  343. * for displaying a privacy policy link, and as such, SDL_HINT_WINRT_PRIVACY_POLICY_URL
  344. * will not get used on that platform. Network-enabled phone apps should display
  345. * their privacy policy through some other, in-app means.
  346. */
  347. #define SDL_HINT_WINRT_PRIVACY_POLICY_URL "SDL_HINT_WINRT_PRIVACY_POLICY_URL"
  348. /** \brief Label text for a WinRT app's privacy policy link
  349. *
  350. * Network-enabled WinRT apps must include a privacy policy. On Windows 8, 8.1, and RT,
  351. * Microsoft mandates that this policy be available via the Windows Settings charm.
  352. * SDL provides code to add a link there, with it's label text being set via the
  353. * optional hint, SDL_HINT_WINRT_PRIVACY_POLICY_LABEL.
  354. *
  355. * Please note that a privacy policy's contents are not set via this hint. A separate
  356. * hint, SDL_HINT_WINRT_PRIVACY_POLICY_URL, is used to link to the actual text of the
  357. * policy.
  358. *
  359. * The contents of this hint should be encoded as a UTF8 string.
  360. *
  361. * The default value is "Privacy Policy". This hint should only be set during app
  362. * initialization, preferably before any calls to SDL_Init.
  363. *
  364. * For additional information on linking to a privacy policy, see the documentation for
  365. * SDL_HINT_WINRT_PRIVACY_POLICY_URL.
  366. */
  367. #define SDL_HINT_WINRT_PRIVACY_POLICY_LABEL "SDL_HINT_WINRT_PRIVACY_POLICY_LABEL"
  368. /** \brief If set to 1, back button press events on Windows Phone 8+ will be marked as handled.
  369. *
  370. * TODO, WinRT: document SDL_HINT_WINRT_HANDLE_BACK_BUTTON need and use
  371. * For now, more details on why this is needed can be found at the
  372. * beginning of the following web page:
  373. * http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj247550(v=vs.105).aspx
  374. */
  375. #define SDL_HINT_WINRT_HANDLE_BACK_BUTTON "SDL_HINT_WINRT_HANDLE_BACK_BUTTON"
  376. /**
  377. * \brief A variable that dictates policy for fullscreen Spaces on Mac OS X.
  378. *
  379. * This hint only applies to Mac OS X.
  380. *
  381. * The variable can be set to the following values:
  382. * "0" - Disable Spaces support (FULLSCREEN_DESKTOP won't use them and
  383. * SDL_WINDOW_RESIZABLE windows won't offer the "fullscreen"
  384. * button on their titlebars).
  385. * "1" - Enable Spaces support (FULLSCREEN_DESKTOP will use them and
  386. * SDL_WINDOW_RESIZABLE windows will offer the "fullscreen"
  387. * button on their titlebars.
  388. *
  389. * The default value is "1". Spaces are disabled regardless of this hint if
  390. * the OS isn't at least Mac OS X Lion (10.7). This hint must be set before
  391. * any windows are created.
  392. */
  393. #define SDL_HINT_VIDEO_MAC_FULLSCREEN_SPACES "SDL_VIDEO_MAC_FULLSCREEN_SPACES"
  394. /**
  395. * \brief An enumeration of hint priorities
  396. */
  397. typedef enum
  398. {
  399. SDL_HINT_DEFAULT,
  400. SDL_HINT_NORMAL,
  401. SDL_HINT_OVERRIDE
  402. } SDL_HintPriority;
  403. /**
  404. * \brief Set a hint with a specific priority
  405. *
  406. * The priority controls the behavior when setting a hint that already
  407. * has a value. Hints will replace existing hints of their priority and
  408. * lower. Environment variables are considered to have override priority.
  409. *
  410. * \return SDL_TRUE if the hint was set, SDL_FALSE otherwise
  411. */
  412. extern DECLSPEC SDL_bool SDLCALL SDL_SetHintWithPriority(const char *name,
  413. const char *value,
  414. SDL_HintPriority priority);
  415. /**
  416. * \brief Set a hint with normal priority
  417. *
  418. * \return SDL_TRUE if the hint was set, SDL_FALSE otherwise
  419. */
  420. extern DECLSPEC SDL_bool SDLCALL SDL_SetHint(const char *name,
  421. const char *value);
  422. /**
  423. * \brief Get a hint
  424. *
  425. * \return The string value of a hint variable.
  426. */
  427. extern DECLSPEC const char * SDLCALL SDL_GetHint(const char *name);
  428. /**
  429. * \brief Add a function to watch a particular hint
  430. *
  431. * \param name The hint to watch
  432. * \param callback The function to call when the hint value changes
  433. * \param userdata A pointer to pass to the callback function
  434. */
  435. typedef void (*SDL_HintCallback)(void *userdata, const char *name, const char *oldValue, const char *newValue);
  436. extern DECLSPEC void SDLCALL SDL_AddHintCallback(const char *name,
  437. SDL_HintCallback callback,
  438. void *userdata);
  439. /**
  440. * \brief Remove a function watching a particular hint
  441. *
  442. * \param name The hint being watched
  443. * \param callback The function being called when the hint value changes
  444. * \param userdata A pointer being passed to the callback function
  445. */
  446. extern DECLSPEC void SDLCALL SDL_DelHintCallback(const char *name,
  447. SDL_HintCallback callback,
  448. void *userdata);
  449. /**
  450. * \brief Clear all hints
  451. *
  452. * This function is called during SDL_Quit() to free stored hints.
  453. */
  454. extern DECLSPEC void SDLCALL SDL_ClearHints(void);
  455. /* Ends C function definitions when using C++ */
  456. #ifdef __cplusplus
  457. }
  458. #endif
  459. #include "close_code.h"
  460. #endif /* _SDL_hints_h */
  461. /* vi: set ts=4 sw=4 expandtab: */