WhatsNew 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727
  1. This is a list of API changes in SDL's version history.
  2. Version 1.0:
  3. 1.2.14:
  4. Added cast macros for correct usage with C++:
  5. SDL_reinterpret_cast(type, expression)
  6. SDL_static_cast(type, expression)
  7. Added SDL_VIDEO_FULLSCREEN_DISPLAY as a preferred synonym for
  8. SDL_VIDEO_FULLSCREEN_HEAD on X11.
  9. Added SDL_DISABLE_LOCK_KEYS environment variable to enable normal
  10. up/down events for Caps-Lock and Num-Lock keys.
  11. 1.2.13:
  12. Added SDL_BUTTON_X1 and SDL_BUTTON_X2 constants.
  13. 1.2.12:
  14. Added SDL_VIDEO_ALLOW_SCREENSAVER to override SDL's disabling
  15. of the screensaver on Mac OS X and X11.
  16. 1.2.10:
  17. If SDL_OpenAudio() is passed zero for the desired format
  18. fields, the following environment variables will be used
  19. to fill them in:
  20. SDL_AUDIO_FREQUENCY
  21. SDL_AUDIO_FORMAT
  22. SDL_AUDIO_CHANNELS
  23. SDL_AUDIO_SAMPLES
  24. If an environment variable is not specified, it will be set
  25. to a reasonable default value.
  26. Added support for the SDL_VIDEO_FULLSCREEN_HEAD environment
  27. variable, currently supported on X11 Xinerama configurations.
  28. Added SDL_GL_SWAP_CONTROL to wait for vsync in OpenGL applications.
  29. Added SDL_GL_ACCELERATED_VISUAL to guarantee hardware acceleration.
  30. Added current_w and current_h to the SDL_VideoInfo structure,
  31. which is set to the desktop resolution during video intialization,
  32. and then set to the current resolution when a video mode is set.
  33. SDL_SetVideoMode() now accepts 0 for width or height and will use
  34. the current video mode (or the desktop mode if no mode has been set.)
  35. Added SDL_GetKeyRepeat()
  36. Added SDL_config.h, with defaults for various build environments.
  37. 1.2.7:
  38. Added CPU feature detection functions to SDL_cpuinfo.h:
  39. SDL_HasRDTSC(), SDL_HasMMX(), SDL_Has3DNow(), SDL_HasSSE(),
  40. SDL_HasAltiVec()
  41. Added function to create RWops from const memory: SDL_RWFromConstMem()
  42. 1.2.6:
  43. Added SDL_LoadObject(), SDL_LoadFunction(), and SDL_UnloadObject()
  44. Added SDL_GL_MULTISAMPLEBUFFERS and SDL_GL_MULTISAMPLESAMPLES for FSAA
  45. 1.2.5:
  46. Added SDL_BUTTON_WHEELUP (4) and SDL_BUTTON_WHEELDOWN (5)
  47. Added SDL_GL_STEREO for stereoscopic OpenGL contexts
  48. 1.2.0:
  49. Added SDL_VIDEOEXPOSE event to signal that the screen needs to
  50. be redrawn. This is currently only delivered to OpenGL windows
  51. on X11, though it may be delivered in the future when the video
  52. memory is lost under DirectX.
  53. 1.1.8:
  54. You can pass SDL_NOFRAME to SDL_VideoMode() to create a window
  55. that has no title bar or frame decoration. Fullscreen video
  56. modes automatically have this flag set.
  57. Added a function to query the clipping rectangle for a surface:
  58. void SDL_GetClipRect(SDL_Surface *surface, SDL_Rect *rect)
  59. Added a function to query the current event filter:
  60. SDL_EventFilter SDL_GetEventFilter(void)
  61. If you pass -1 to SDL_ShowCursor(), it won't change the current
  62. cursor visibility state, but will still return it.
  63. SDL_LockSurface() and SDL_UnlockSurface() are recursive, meaning
  64. you can nest them as deep as you want, as long as each lock call
  65. has a matching unlock call. The surface remains locked until the
  66. last matching unlock call.
  67. Note that you may not blit to or from a locked surface.
  68. 1.1.7:
  69. The SDL_SetGammaRamp() and SDL_GetGammaRamp() functions now take
  70. arrays of Uint16 values instead of Uint8 values. For the most part,
  71. you can just take your old values and shift them up 8 bits to get
  72. new correct values for your gamma ramps.
  73. You can pass SDL_RLEACCEL in flags passed to SDL_ConvertSurface()
  74. and SDL will try to RLE accelerate colorkey and alpha blits in the
  75. resulting surface.
  76. 1.1.6:
  77. Added a function to return the thread ID of a specific thread:
  78. Uint32 SDL_GetThreadID(SDL_Thread *thread)
  79. If 'thread' is NULL, this function returns the id for this thread.
  80. 1.1.5:
  81. The YUV overlay structure has been changed to use an array of
  82. pitches and pixels representing the planes of a YUV image, to
  83. better enable hardware acceleration. The YV12 and IYUV formats
  84. each have three planes, corresponding to the Y, U, and V portions
  85. of the image, while packed pixel YUV formats just have one plane.
  86. For palettized mode (8bpp), the screen colormap is now split in
  87. a physical and a logical palette. The physical palette determines
  88. what colours the screen pixels will get when displayed, and the
  89. logical palette controls the mapping from blits to/from the screen.
  90. A new function, SDL_SetPalette() has been added to change
  91. logical and physical palettes separately. SDL_SetColors() works
  92. just as before, and is equivalent to calling SDL_SetPalette() with
  93. a flag argument of (SDL_LOGPAL|SDL_PHYSPAL).
  94. SDL_BlitSurface() no longer modifies the source rectangle, only the
  95. destination rectangle. The width/height members of the destination
  96. rectangle are ignored, only the position is used.
  97. The old source clipping function SDL_SetClipping() has been replaced
  98. with a more useful function to set the destination clipping rectangle:
  99. SDL_bool SDL_SetClipRect(SDL_Surface *surface, SDL_Rect *rect)
  100. Added a function to see what subsystems have been initialized:
  101. Uint32 SDL_WasInit(Uint32 flags)
  102. The Big Alpha Flip: SDL now treats alpha as opacity like everybody
  103. else, and not as transparency:
  104. A new cpp symbol: SDL_ALPHA_OPAQUE is defined as 255
  105. A new cpp symbol: SDL_ALPHA_TRANSPARENT is defined as 0
  106. Values between 0 and 255 vary from fully transparent to fully opaque.
  107. New functions:
  108. SDL_DisplayFormatAlpha()
  109. Returns a surface converted to a format with alpha-channel
  110. that can be blit efficiently to the screen. (In other words,
  111. like SDL_DisplayFormat() but the resulting surface has
  112. an alpha channel.) This is useful for surfaces with alpha.
  113. SDL_MapRGBA()
  114. Works as SDL_MapRGB() but takes an additional alpha parameter.
  115. SDL_GetRGBA()
  116. Works as SDL_GetRGB() but also returns the alpha value
  117. (SDL_ALPHA_OPAQUE for formats without an alpha channel)
  118. Both SDL_GetRGB() and SDL_GetRGBA() now always return values in
  119. the [0..255] interval. Previously, SDL_GetRGB() would return
  120. (0xf8, 0xfc, 0xf8) for a completely white pixel in RGB565 format.
  121. (N.B.: This is broken for bit fields < 3 bits.)
  122. SDL_MapRGB() returns pixels in which the alpha channel is set opaque.
  123. SDL_SetAlpha() can now be used for both setting the per-surface
  124. alpha, using the new way of thinking of alpha, and also to enable
  125. and disable per-pixel alpha blending for surfaces with an alpha
  126. channel:
  127. To disable alpha blending:
  128. SDL_SetAlpha(surface, 0, 0);
  129. To re-enable alpha blending:
  130. SDL_SetAlpha(surface, SDL_SRCALPHA, 0);
  131. Surfaces with an alpha channel have blending enabled by default.
  132. SDL_SetAlpha() now accepts SDL_RLEACCEL as a flag, which requests
  133. RLE acceleration of blits, just as like with SDL_SetColorKey().
  134. This flag can be set for both surfaces with an alpha channel
  135. and surfaces with an alpha value set by SDL_SetAlpha().
  136. As always, RLE surfaces must be locked before pixel access is
  137. allowed, and unlocked before any other SDL operations are done
  138. on it.
  139. The blit semantics for surfaces with and without alpha and colorkey
  140. have now been defined:
  141. RGBA->RGB:
  142. SDL_SRCALPHA set:
  143. alpha-blend (using alpha-channel).
  144. SDL_SRCCOLORKEY ignored.
  145. SDL_SRCALPHA not set:
  146. copy RGB.
  147. if SDL_SRCCOLORKEY set, only copy the pixels matching the
  148. RGB values of the source colour key, ignoring alpha in the
  149. comparison.
  150. RGB->RGBA:
  151. SDL_SRCALPHA set:
  152. alpha-blend (using the source per-surface alpha value);
  153. set destination alpha to opaque.
  154. SDL_SRCALPHA not set:
  155. copy RGB, set destination alpha to opaque.
  156. both:
  157. if SDL_SRCCOLORKEY set, only copy the pixels matching the
  158. source colour key.
  159. RGBA->RGBA:
  160. SDL_SRCALPHA set:
  161. alpha-blend (using the source alpha channel) the RGB values;
  162. leave destination alpha untouched. [Note: is this correct?]
  163. SDL_SRCCOLORKEY ignored.
  164. SDL_SRCALPHA not set:
  165. copy all of RGBA to the destination.
  166. if SDL_SRCCOLORKEY set, only copy the pixels matching the
  167. RGB values of the source colour key, ignoring alpha in the
  168. comparison.
  169. RGB->RGB:
  170. SDL_SRCALPHA set:
  171. alpha-blend (using the source per-surface alpha value).
  172. SDL_SRCALPHA not set:
  173. copy RGB.
  174. both:
  175. if SDL_SRCCOLORKEY set, only copy the pixels matching the
  176. source colour key.
  177. As a special case, blits from surfaces with per-surface alpha
  178. value of 128 (50% transparency) are optimised and much faster
  179. than other alpha values. This does not apply to surfaces with
  180. alpha channels (per-pixel alpha).
  181. New functions for manipulating the gamma of the display have
  182. been added:
  183. int SDL_SetGamma(float red, float green, float blue);
  184. int SDL_SetGammaRamp(Uint8 *red, Uint8 *green, Uint8 *blue);
  185. int SDL_GetGammaRamp(Uint8 *red, Uint8 *green, Uint8 *blue);
  186. Gamma ramps are tables with 256 entries which map the screen color
  187. components into actually displayed colors. For an example of
  188. implementing gamma correction and gamma fades, see test/testgamma.c
  189. Gamma control is not supported on all hardware.
  190. 1.1.4:
  191. The size of the SDL_CDtrack structure changed from 8 to 12 bytes
  192. as the size of the length member was extended to 32 bits.
  193. You can now use SDL for 2D blitting with a GL mode by passing the
  194. SDL_OPENGLBLIT flag to SDL_SetVideoMode(). You can specify 16 or
  195. 32 bpp, and the data in the framebuffer is put into the GL scene
  196. when you call SDL_UpdateRects(), and the scene will be visible
  197. when you call SDL_GL_SwapBuffers().
  198. Run the "testgl" test program with the -logo command line option
  199. to see an example of this blending of 2D and 3D in SDL.
  200. 1.1.3:
  201. Added SDL_FreeRW() to the API, to complement SDL_AllocRW()
  202. Added resizable window support - just add SDL_RESIZABLE to the
  203. SDL_SetVideoMode() flags, and then wait for SDL_VIDEORESIZE events.
  204. See SDL_events.h for details on the new SDL_ResizeEvent structure.
  205. Added condition variable support, based on mutexes and semaphores.
  206. SDL_CreateCond()
  207. SDL_DestroyCond()
  208. SDL_CondSignal()
  209. SDL_CondBroadcast()
  210. SDL_CondWait()
  211. SDL_CondTimedWait()
  212. The new function prototypes are in SDL_mutex.h
  213. Added counting semaphore support, based on the mutex primitive.
  214. SDL_CreateSemaphore()
  215. SDL_DestroySemaphore()
  216. SDL_SemWait()
  217. SDL_SemTryWait()
  218. SDL_SemWaitTimeout()
  219. SDL_SemPost()
  220. SDL_SemValue()
  221. The new function prototypes are in SDL_mutex.h
  222. Added support for asynchronous blitting. To take advantage of this,
  223. you must set the SDL_ASYNCBLIT flag when setting the video mode and
  224. creating surfaces that you want accelerated in this way. You must
  225. lock surfaces that have this flag set, and the lock will block until
  226. any queued blits have completed.
  227. Added YUV video overlay support.
  228. The supported YUV formats are: YV12, IYUV, YUY2, UYVY, and YVYU.
  229. This function creates an overlay surface:
  230. SDL_CreateYUVOverlay()
  231. You must lock and unlock the overlay to get access to the data:
  232. SDL_LockYUVOverlay() SDL_UnlockYUVOverlay()
  233. You can then display the overlay:
  234. SDL_DisplayYUVOverlay()
  235. You must free the overlay when you are done using it:
  236. SDL_FreeYUVOverlay()
  237. See SDL_video.h for the full function prototypes.
  238. The joystick hat position constants have been changed:
  239. Old constant New constant
  240. ------------ ------------
  241. 0 SDL_HAT_CENTERED
  242. 1 SDL_HAT_UP
  243. 2 SDL_HAT_RIGHTUP
  244. 3 SDL_HAT_RIGHT
  245. 4 SDL_HAT_RIGHTDOWN
  246. 5 SDL_HAT_DOWN
  247. 6 SDL_HAT_LEFTDOWN
  248. 7 SDL_HAT_LEFT
  249. 8 SDL_HAT_LEFTUP
  250. The new constants are bitmasks, so you can check for the
  251. individual axes like this:
  252. if ( hat_position & SDL_HAT_UP ) {
  253. }
  254. and you'll catch left-up, up, and right-up.
  255. 1.1.2:
  256. Added multiple timer support:
  257. SDL_AddTimer() and SDL_RemoveTimer()
  258. SDL_WM_SetIcon() now respects the icon colorkey if mask is NULL.
  259. 1.1.0:
  260. Added initial OpenGL support.
  261. First set GL attributes (such as RGB depth, alpha depth, etc.)
  262. SDL_GL_SetAttribute()
  263. Then call SDL_SetVideoMode() with the SDL_OPENGL flag.
  264. Perform all of your normal GL drawing.
  265. Finally swap the buffers with the new SDL function:
  266. SDL_GL_SwapBuffers()
  267. See the new 'testgl' test program for an example of using GL with SDL.
  268. You can load GL extension functions by using the function:
  269. SDL_GL_LoadProcAddress()
  270. Added functions to initialize and cleanup specific SDL subsystems:
  271. SDL_InitSubSystem() and SDL_QuitSubSystem()
  272. Added user-defined event type:
  273. typedef struct {
  274. Uint8 type;
  275. int code;
  276. void *data1;
  277. void *data2;
  278. } SDL_UserEvent;
  279. This structure is in the "user" member of an SDL_Event.
  280. Added a function to push events into the event queue:
  281. SDL_PushEvent()
  282. Example of using the new SDL user-defined events:
  283. {
  284. SDL_Event event;
  285. event.type = SDL_USEREVENT;
  286. event.user.code = my_event_code;
  287. event.user.data1 = significant_data;
  288. event.user.data2 = 0;
  289. SDL_PushEvent(&event);
  290. }
  291. Added a function to get mouse deltas since last query:
  292. SDL_GetRelativeMouseState()
  293. Added a boolean datatype to SDL_types.h:
  294. SDL_bool = { SDL_TRUE, SDL_FALSE }
  295. Added a function to get the current audio status:
  296. SDL_GetAudioState();
  297. It returns one of:
  298. SDL_AUDIO_STOPPED,
  299. SDL_AUDIO_PLAYING,
  300. SDL_AUDIO_PAUSED
  301. Added an AAlib driver (ASCII Art) - by Stephane Peter.
  302. 1.0.6:
  303. The input grab state is reset after each call to SDL_SetVideoMode().
  304. The input is grabbed by default in fullscreen mode, and ungrabbed in
  305. windowed mode. If you want to set input grab to a particular value,
  306. you should set it after each call to SDL_SetVideoMode().
  307. 1.0.5:
  308. Exposed SDL_AudioInit(), SDL_VideoInit()
  309. Added SDL_AudioDriverName() and SDL_VideoDriverName()
  310. Added new window manager function:
  311. SDL_WM_ToggleFullScreen()
  312. This is currently implemented only on Linux
  313. The ALT-ENTER code has been removed - it's not appropriate for a
  314. lib to bind keys when they aren't even emergency escape sequences.
  315. ALT-ENTER functionality can be implemented with the following code:
  316. int Handle_AltEnter(const SDL_Event *event)
  317. {
  318. if ( event->type == SDL_KEYDOWN ) {
  319. if ( (event->key.keysym.sym == SDLK_RETURN) &&
  320. (event->key.keysym.mod & KMOD_ALT) ) {
  321. SDL_WM_ToggleFullScreen(SDL_GetVideoSurface());
  322. return(0);
  323. }
  324. }
  325. return(1);
  326. }
  327. SDL_SetEventFilter(Handle_AltEnter);
  328. 1.0.3:
  329. Under X11, if you grab the input and hide the mouse cursor,
  330. the mouse will go into a "relative motion" mode where you
  331. will always get relative motion events no matter how far in
  332. each direction you move the mouse - relative motion is not
  333. bounded by the edges of the window (though the absolute values
  334. of the mouse positions are clamped by the size of the window).
  335. The SVGAlib, framebuffer console, and DirectInput drivers all
  336. have this behavior naturally, and the GDI and BWindow drivers
  337. never go into "relative motion" mode.
  338. 1.0.2:
  339. Added a function to enable keyboard repeat:
  340. SDL_EnableKeyRepeat()
  341. Added a function to grab the mouse and keyboard input
  342. SDL_WM_GrabInput()
  343. Added a function to iconify the window.
  344. SDL_WM_IconifyWindow()
  345. If this function succeeds, the application will receive an event
  346. signaling SDL_APPACTIVE event
  347. 1.0.1:
  348. Added constants to SDL_audio.h for 16-bit native byte ordering:
  349. AUDIO_U16SYS, AUDIO_S16SYS
  350. 1.0.0:
  351. New public release
  352. Version 0.11:
  353. 0.11.5:
  354. A new function SDL_GetVideoSurface() has been added, and returns
  355. a pointer to the current display surface.
  356. SDL_AllocSurface() has been renamed SDL_CreateRGBSurface(), and
  357. a new function SDL_CreateRGBSurfaceFrom() has been added to allow
  358. creating an SDL surface from an existing pixel data buffer.
  359. Added SDL_GetRGB() to the headers and documentation.
  360. 0.11.4:
  361. SDL_SetLibraryPath() is no longer meaningful, and has been removed.
  362. 0.11.3:
  363. A new flag for SDL_Init(), SDL_INIT_NOPARACHUTE, prevents SDL from
  364. installing fatal signal handlers on operating systems that support
  365. them.
  366. Version 0.9:
  367. 0.9.15:
  368. SDL_CreateColorCursor() has been removed. Color cursors should
  369. be implemented as sprites, blitted by the application when the
  370. cursor moves. To get smooth color cursor updates when the app
  371. is busy, pass the SDL_INIT_EVENTTHREAD flag to SDL_Init(). This
  372. allows you to handle the mouse motion in another thread from an
  373. event filter function, but is currently only supported by Linux
  374. and BeOS. Note that you'll have to protect the display surface
  375. from multi-threaded access by using mutexes if you do this.
  376. Thread-safe surface support has been removed from SDL.
  377. This makes blitting somewhat faster, by removing SDL_MiddleBlit().
  378. Code that used SDL_MiddleBlit() should use SDL_LowerBlit() instead.
  379. You can make your surfaces thread-safe by allocating your own
  380. mutex and making lock/unlock calls around accesses to your surface.
  381. 0.9.14:
  382. SDL_GetMouseState() now takes pointers to int rather than Uint16.
  383. If you set the SDL_WINDOWID environment variable under UNIX X11,
  384. SDL will use that as the main window instead of creating it's own.
  385. This is an unsupported extension to SDL, and not portable at all.
  386. 0.9.13:
  387. Added a function SDL_SetLibraryPath() which can be used to specify
  388. the directory containing the SDL dynamic libraries. This is useful
  389. for commercial applications which ship with particular versions
  390. of the libraries, and for security on multi-user systems.
  391. If this function is not used, the default system directories are
  392. searched using the native dynamic object loading mechanism.
  393. In order to support C linkage under Visual C++, you must declare
  394. main() without any return type:
  395. main(int argc, char *argv[]) {
  396. /* Do the program... */
  397. return(0);
  398. }
  399. C++ programs should also return a value if compiled under VC++.
  400. The blit_endian member of the SDL_VideoInfo struct has been removed.
  401. SDL_SymToASCII() has been replaced with SDL_GetKeyName(), so there
  402. is now no longer any function to translate a keysym to a character.
  403. The SDL_keysym structure has been extended with a 'scancode' and
  404. 'unicode' member. The 'scancode' is a hardware specific scancode
  405. for the key that was pressed, and may be 0. The 'unicode' member
  406. is a 16-bit UNICODE translation of the key that was pressed along
  407. with any modifiers or compose keys that have been pressed.
  408. If no UNICODE translation exists for the key, 'unicode' will be 0.
  409. Added a function SDL_EnableUNICODE() to enable/disable UNICODE
  410. translation of character keypresses. Translation defaults off.
  411. To convert existing code to use the new API, change code which
  412. uses SDL_SymToASCII() to get the keyname to use SDL_GetKeyName(),
  413. and change code which uses it to get the ASCII value of a sym to
  414. use the 'unicode' member of the event keysym.
  415. 0.9.12:
  416. There is partial support for 64-bit datatypes. I don't recommend
  417. you use this if you have a choice, because 64-bit datatypes are not
  418. supported on many platforms. On platforms for which it is supported,
  419. the SDL_HAS_64BIT_TYPE C preprocessor define will be enabled, and
  420. you can use the Uint64 and Sint64 datatypes.
  421. Added functions to SDL_endian.h to support 64-bit datatypes:
  422. SDL_SwapLE64(), SDL_SwapBE64(),
  423. SDL_ReadLE64(), SDL_ReadBE64(), SDL_WriteLE64(), SDL_WriteBE64()
  424. A new member "len_ratio" has been added to the SDL_AudioCVT structure,
  425. and allows you to determine either the original buffer length or the
  426. converted buffer length, given the other.
  427. A new function SDL_FreeWAV() has been added to the API to free data
  428. allocated by SDL_LoadWAV_RW(). This is necessary under Win32 since
  429. the gcc compiled DLL uses a different heap than VC++ compiled apps.
  430. SDL now has initial support for international keyboards using the
  431. Latin character set.
  432. If a particular mapping is desired, you can set the DEFAULT_KEYBOARD
  433. compile-time variable, or you can set the environment variable
  434. "SDL_KEYBOARD" to a string identifying the keyboard mapping you desire.
  435. The valid values for these variables can be found in SDL_keyboard.c
  436. Full support for German and French keyboards under X11 is implemented.
  437. 0.9.11:
  438. The THREADED_EVENTS compile-time define has been replaced with the
  439. SDL_INIT_EVENTTHREAD flag. If this flag is passed to SDL_Init(),
  440. SDL will create a separate thread to perform input event handling.
  441. If this flag is passed to SDL_Init(), and the OS doesn't support
  442. event handling in a separate thread, SDL_Init() will fail.
  443. Be sure to add calls to SDL_Delay() in your main thread to allow
  444. the OS to schedule your event thread, or it may starve, leading
  445. to slow event delivery and/or dropped events.
  446. Currently MacOS and Win32 do not support this flag, while BeOS
  447. and Linux do support it. I recommend that your application only
  448. use this flag if absolutely necessary.
  449. The SDL thread function passed to SDL_CreateThread() now returns a
  450. status. This status can be retrieved by passing a non-NULL pointer
  451. as the 'status' argument to SDL_WaitThread().
  452. The volume parameter to SDL_MixAudio() has been increased in range
  453. from (0-8) to (0-128)
  454. SDL now has a data source abstraction which can encompass a file,
  455. an area of memory, or any custom object you can envision. It uses
  456. these abstractions, SDL_RWops, in the endian read/write functions,
  457. and the built-in WAV and BMP file loaders. This means you can load
  458. WAV chunks from memory mapped files, compressed archives, network
  459. pipes, or anything else that has a data read abstraction.
  460. There are three built-in data source abstractions:
  461. SDL_RWFromFile(), SDL_RWFromFP(), SDL_RWFromMem()
  462. along with a generic data source allocation function:
  463. SDL_AllocRW()
  464. These data sources can be used like stdio file pointers with the
  465. following convenience functions:
  466. SDL_RWseek(), SDL_RWread(), SDL_RWwrite(), SDL_RWclose()
  467. These functions are defined in the new header file "SDL_rwops.h"
  468. The endian swapping functions have been turned into macros for speed
  469. and SDL_CalculateEndian() has been removed. SDL_endian.h now defines
  470. SDL_BYTEORDER as either SDL_BIG_ENDIAN or SDL_LIL_ENDIAN depending on
  471. the endianness of the host system.
  472. The endian read/write functions now take an SDL_RWops pointer
  473. instead of a stdio FILE pointer, to support the new data source
  474. abstraction.
  475. The SDL_*LoadWAV() functions have been replaced with a single
  476. SDL_LoadWAV_RW() function that takes a SDL_RWops pointer as it's
  477. first parameter, and a flag whether or not to automatically
  478. free it as the second parameter. SDL_LoadWAV() is a macro for
  479. backward compatibility and convenience:
  480. SDL_LoadWAV_RW(SDL_RWFromFile("sample.wav", "rb"), 1, ...);
  481. The SDL_*LoadBMP()/SDL_*SaveBMP() functions have each been replaced
  482. with a single function that takes a SDL_RWops pointer as it's
  483. first parameter, and a flag whether or not to automatically
  484. free it as the second parameter. SDL_LoadBMP() and SDL_SaveBMP()
  485. are macros for backward compatibility and convenience:
  486. SDL_LoadBMP_RW(SDL_RWFromFile("sample.bmp", "rb"), 1, ...);
  487. SDL_SaveBMP_RW(SDL_RWFromFile("sample.bmp", "wb"), 1, ...);
  488. Note that these functions use SDL_RWseek() extensively, and should
  489. not be used on pipes or other non-seekable data sources.
  490. 0.9.10:
  491. The Linux SDL_SysWMInfo and SDL_SysWMMsg structures have been
  492. extended to support multiple types of display drivers, as well as
  493. safe access to the X11 display when THREADED_EVENTS is enabled.
  494. The new structures are documented in the SDL_syswm.h header file.
  495. Thanks to John Elliott <jce@seasip.demon.co.uk>, the UK keyboard
  496. should now work properly, as well as the "Windows" keys on US
  497. keyboards.
  498. The Linux CD-ROM code now reads the CD-ROM devices from /etc/fstab
  499. instead of trying to open each block device on the system.
  500. The CD must be listed in /etc/fstab as using the iso9660 filesystem.
  501. On Linux, if you define THREADED_EVENTS at compile time, a separate
  502. thread will be spawned to gather X events asynchronously from the
  503. graphics updates. This hasn't been extensively tested, but it does
  504. provide a means of handling keyboard and mouse input in a separate
  505. thread from the graphics thread. (This is now enabled by default.)
  506. A special access function SDL_PeepEvents() allows you to manipulate
  507. the event queue in a thread-safe manner, including peeking at events,
  508. removing events of a specified type, and adding new events of arbitrary
  509. type to the queue (use the new 'user' member of the SDL_Event type).
  510. If you use SDL_PeepEvents() to gather events, then the main graphics
  511. thread needs to call SDL_PumpEvents() periodically to drive the event
  512. loop and generate input events. This is not necessary if SDL has been
  513. compiled with THREADED_EVENTS defined, but doesn't hurt.
  514. A new function SDL_ThreadID() returns the identifier associated with
  515. the current thread.
  516. 0.9.9:
  517. The AUDIO_STEREO format flag has been replaced with a new 'channels'
  518. member of the SDL_AudioSpec structure. The channels are 1 for mono
  519. audio, and 2 for stereo audio. In the future more channels may be
  520. supported for 3D surround sound.
  521. The SDL_MixAudio() function now takes an additional volume parameter,
  522. which should be set to SDL_MIX_MAXVOLUME for compatibility with the
  523. original function.
  524. The CD-ROM functions which take a 'cdrom' parameter can now be
  525. passed NULL, and will act on the last successfully opened CD-ROM.
  526. 0.9.8:
  527. No changes, bugfixes only.
  528. 0.9.7:
  529. No changes, bugfixes only.
  530. 0.9.6:
  531. Added a fast rectangle fill function: SDL_FillRect()
  532. Addition of a useful function for getting info on the video hardware:
  533. const SDL_VideoInfo *SDL_GetVideoInfo(void)
  534. This function replaces SDL_GetDisplayFormat().
  535. Initial support for double-buffering:
  536. Use the SDL_DOUBLEBUF flag in SDL_SetVideoMode()
  537. Update the screen with a new function: SDL_Flip()
  538. SDL_AllocSurface() takes two new flags:
  539. SDL_SRCCOLORKEY means that the surface will be used for colorkey blits
  540. and if the hardware supports hardware acceleration of colorkey blits
  541. between two surfaces in video memory, to place the surface in video
  542. memory if possible, otherwise it will be placed in system memory.
  543. SDL_SRCALPHA means that the surface will be used for alpha blits and
  544. if the hardware supports hardware acceleration of alpha blits between
  545. two surfaces in video memory, to place the surface in video memory
  546. if possible, otherwise it will be placed in system memory.
  547. SDL_HWSURFACE now means that the surface will be created with the
  548. same format as the display surface, since having surfaces in video
  549. memory is only useful for fast blitting to the screen, and you can't
  550. blit surfaces with different surface formats in video memory.
  551. 0.9.5:
  552. You can now pass a NULL mask to SDL_WM_SetIcon(), and it will assume
  553. that the icon consists of the entire image.
  554. SDL_LowerBlit() is back -- but don't use it on the display surface.
  555. It is exactly the same as SDL_MiddleBlit(), but doesn't check for
  556. thread safety.
  557. Added SDL_FPLoadBMP(), SDL_FPSaveBMP(), SDL_FPLoadWAV(), which take
  558. a FILE pointer instead of a file name.
  559. Added CD-ROM audio control API:
  560. SDL_CDNumDrives()
  561. SDL_CDName()
  562. SDL_CDOpen()
  563. SDL_CDStatus()
  564. SDL_CDPlayTracks()
  565. SDL_CDPlay()
  566. SDL_CDPause()
  567. SDL_CDResume()
  568. SDL_CDStop()
  569. SDL_CDEject()
  570. SDL_CDClose()
  571. 0.9.4:
  572. No changes, bugfixes only.
  573. 0.9.3:
  574. Mouse motion event now includes relative motion information:
  575. Sint16 event->motion.xrel, Sint16 event->motion.yrel
  576. X11 keyrepeat handling can be disabled by defining IGNORE_X_KEYREPEAT
  577. (Add -DIGNORE_X_KEYREPEAT to CFLAGS line in obj/x11Makefile)
  578. 0.9.2:
  579. No changes, bugfixes only.
  580. 0.9.1:
  581. Removed SDL_MapSurface() and SDL_UnmapSurface() -- surfaces are now
  582. automatically mapped on blit.
  583. 0.8.0:
  584. SDL stable release