Mercurial > sdl-ios-xcode
annotate docs.html @ 4139:568c9b3c0167 SDL-1.2
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
* Use XResetScreenSaver() instead of disabling screensaver entirely.
Full discussion summary from Erik on the SDL mailing list:
Current behaviour
=================
SDL changes the user's display power management settings without
permission from the user and without telling the user.
The interface that it uses to do so is DPMSDisable/DPMSEnable, which
should only ever be used by configuration utilities like KControl, never
by normal application programs, let alone by the libraries that they
use. Using an interface that is not at all intended for what SDL tries
to achieve means that it will not work as it should. Firstly, the power
management is completely disabled during the whole lifetime of the SDL
program, not only when it should be. Secondly, it makes SDL
non-reentrant, meaning that things will break when multiple SDL programs
are clients of the same X server simultaneously. Thirdly, no cleanup
mechanism ensures that the setting is restored if the client does not do
that (for example if it crashes).
In addition to that, this interface is broken on xorg,
[http://bugs.freedesktop.org/show_bug.cgi?id=13962], so what SDL tries
to do does not work at all on that implementation of the X Window
System. (The reason that the DPMSEnable works in KControl is that it
calls DPMSSetTimeout immediately after,
[http://websvn.kde.org/tags/KDE/3.5.9/kdebase/kcontrol/energy/energy.cpp?annotate=774532#l343]).
The problems that the current behaviour causes
==============================================
1. Information leak. When the user is away, someone might see what the
user has on the display when the user counts on the screensaver
preventing this. This does not even require physical access to the
workstation, it is enough to see it from a distance.
2. Draining battery. An SDL program that runs on a laptop will quickly
drain the battery while the user is away. The system will soon shut down
and require recharging before being usable again, while it should in
fact have consumed very little energy if the user's settings would have
been obeyed.
3. Wasting energy. Even if battery issues are not considered, energy as
such is wasted.
4. Display wear. The display may be worn out.
The problems that the current behaviour tries to solve
======================================================
1. Preventing screensaver while playing movies.
Many SDL applications are media players. They have reasons to prevent
screensavers from being activated while a movie is being played. When a
user clicks on the play button it can be interpreted as saying "play
this movie, but do not turn off the display while playing it, because I
will watch it even though I do not interact with the system".
2. Preventing screensaver when some input bypasses X.
Sometimes SDL uses input from another source than the X server, so
that the X server is bypassed. This obviously breaks the screensaver
handling. SDL tries to work around that.
3. Preventing screensaver when all input bypasses X.
There is something called Direct Graphics Access mode, where a
program takes control of both the display and the input devices from the
X server. This obviously means that the X server can not handle the
screensaver alone, since screensaver handling depends on input handling.
SDL does not do what it should to help the X server to handle the
screensaver. Nor does SDL take care of screeensaver handling itself. SDL
simply disables the screensaver completely.
How the problems should be solved
=================================
The correct way for an application program to prevent the screensaver
under X is to call XResetScreenSaver. This was recently discovered and
implemented by the mplayer developers,
[http://svn.mplayerhq.hu/mplayer?view=rev&revision=25637]. SDL needs to
wrap this in an API call (SDL_ResetScreenSaver) and implement it for the
other video targets (if they do not have a corresponding call, SDL
should do what it takes on that particular target, for example sending
fake key events).
1. When a movie is played, the player should reset the screensaver when
the animation is advanced to a new frame. The same applies to anything
similar, like slideshows.
2. When the X server is handling input, it must handle all input
(keyboards, mice, gamepads, ...). This is necessary, not only to be able
to handle the screensaver, but also so that it can send the events to
the correct (the currently active) client. If there is an input device
that the X server can not handle for some reason (such as lack of Plug
and Play capability), the program that handles the device as a
workaround must simulate what would happen if the X server would have
handled the device, by calling XResetScreenSaver when input is received
from the device.
3. When the X server is not handling the input, it depends on the
program that does to call XResetScreenSaver whenever an input event
occurs. Alternatively the program must handle the screensaver countdown
internally and call XActivateScreenSaver.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 29 Feb 2008 13:55:44 +0000 |
parents | 9d90d7765fa7 |
children | 8b10a6efad41 |
rev | line source |
---|---|
0 | 1 <HTML> |
2 <HEAD><TITLE>SDL Stable Release</TITLE></HEAD> | |
3 <BODY BGCOLOR="#FFEBCD" TEXT="#000000"> | |
4 | |
5 <IMG SRC="docs/images/rainbow.gif" ALT="[separator]" WIDTH="100%"> | |
6 <P> | |
511
79c189f5bd76
Added an environment variable SDL_HAS3BUTTONMOUSE for Quartz
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
7 This source is stable, and is fully tested on all supported platforms.<br> |
79c189f5bd76
Added an environment variable SDL_HAS3BUTTONMOUSE for Quartz
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
8 Please send bug reports or questions to the SDL mailing list:<br> |
79c189f5bd76
Added an environment variable SDL_HAS3BUTTONMOUSE for Quartz
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
9 <a href="http://www.libsdl.org/mailing-list.php" |
79c189f5bd76
Added an environment variable SDL_HAS3BUTTONMOUSE for Quartz
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
10 >http://www.libsdl.org/mailing-list.php</a><br> |
79c189f5bd76
Added an environment variable SDL_HAS3BUTTONMOUSE for Quartz
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
11 The latest stable release may be found on the |
79c189f5bd76
Added an environment variable SDL_HAS3BUTTONMOUSE for Quartz
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
12 <a href="http://www.libsdl.org/">SDL website</A>. |
79c189f5bd76
Added an environment variable SDL_HAS3BUTTONMOUSE for Quartz
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
13 </P> |
0 | 14 |
15 <H2> <A HREF="docs/index.html">API Documentation</A> </H2> | |
1840
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
16 |
4139
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
17 <H2> SDL 1.2.14 Release Notes </H2> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
18 <P> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
19 SDL 1.2.14 is a minor bug fix release. |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
20 </P> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
21 |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
22 <H3> General Notes </H3> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
23 |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
24 <BLOCKQUOTE> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
25 <P> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
26 </P> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
27 </BLOCKQUOTE> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
28 |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
29 <H3> Unix Notes </H3> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
30 |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
31 <BLOCKQUOTE> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
32 <P> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
33 Added configure option --enable-screensaver, to allow enabling the screensaver by default. |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
34 </P> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
35 <P> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
36 Use XResetScreenSaver() instead of disabling screensaver entirely. |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
37 </P> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
38 </BLOCKQUOTE> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
39 |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
40 <H3> Windows Notes </H3> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
41 |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
42 <BLOCKQUOTE> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
43 <P> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
44 </P> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
45 </BLOCKQUOTE> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
46 |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
47 <H3> Mac OS X Notes </H3> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
48 |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
49 <BLOCKQUOTE> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
50 <P> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
51 </P> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
52 </BLOCKQUOTE> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
53 |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
54 <IMG SRC="docs/images/rainbow.gif" ALT="[separator]" WIDTH="100%"> |
568c9b3c0167
* Added configure option --enable-screensaver, to allow enabling the screensaver by default.
Sam Lantinga <slouken@libsdl.org>
parents:
4123
diff
changeset
|
55 |
4115
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
56 <H2> SDL 1.2.13 Release Notes </H2> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
57 <P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
58 SDL 1.2.13 is a minor bug fix release. |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
59 </P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
60 |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
61 <H3> General Notes </H3> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
62 |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
63 <BLOCKQUOTE> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
64 <P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
65 Fixed link error when building with Intel Compiler 10. |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
66 </P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
67 <P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
68 Removed stray C++ comment from public headers. |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
69 </P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
70 </BLOCKQUOTE> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
71 |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
72 <H3> Unix Notes </H3> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
73 |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
74 <BLOCKQUOTE> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
75 <P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
76 Fixed crash in SDL_SoftStretch() on secure operating systems. |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
77 </P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
78 <P> |
4119
98dee075dae0
Added patch note for fixing bug #503
Sam Lantinga <slouken@libsdl.org>
parents:
4115
diff
changeset
|
79 Fixed undefined symbol on X11 implementations without UTF-8 support. |
98dee075dae0
Added patch note for fixing bug #503
Sam Lantinga <slouken@libsdl.org>
parents:
4115
diff
changeset
|
80 </P> |
98dee075dae0
Added patch note for fixing bug #503
Sam Lantinga <slouken@libsdl.org>
parents:
4115
diff
changeset
|
81 <P> |
4115
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
82 Worked around BadAlloc error when using XVideo on the XFree86 Intel Integrated Graphics driver. |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
83 </P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
84 <P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
85 Scan for all joysticks on Linux instead of stopping at one that was removed. |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
86 </P> |
4121 | 87 <P> |
88 Fixed use of sdl-config arguments in sdl.m4 | |
89 </P> | |
4115
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
90 </BLOCKQUOTE> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
91 |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
92 <H3> Windows Notes </H3> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
93 |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
94 <BLOCKQUOTE> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
95 <P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
96 Fixed crash when a video driver reports higher than 32 bpp video modes. |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
97 </P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
98 <P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
99 Fixed restoring the desktop after setting a 24-bit OpenGL video mode. |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
100 </P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
101 <P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
102 Fixed window titles on Windows 95/98/ME. |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
103 </P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
104 <P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
105 Added SDL_BUTTON_X1 and SDL_BUTTON_X2 constants for extended mouse buttons. |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
106 </P> |
4119
98dee075dae0
Added patch note for fixing bug #503
Sam Lantinga <slouken@libsdl.org>
parents:
4115
diff
changeset
|
107 <P> |
98dee075dae0
Added patch note for fixing bug #503
Sam Lantinga <slouken@libsdl.org>
parents:
4115
diff
changeset
|
108 Added support for quoted command line arguments. |
98dee075dae0
Added patch note for fixing bug #503
Sam Lantinga <slouken@libsdl.org>
parents:
4115
diff
changeset
|
109 </P> |
4115
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
110 </BLOCKQUOTE> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
111 |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
112 <H3> Mac OS X Notes </H3> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
113 |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
114 <BLOCKQUOTE> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
115 <P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
116 SDL now builds on Mac OS X 10.5 (Leopard). |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
117 </P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
118 <P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
119 Fixed high frequency crash involving text input. |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
120 </P> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
121 <P> |
4123
9d90d7765fa7
Guillaume Borios fixed bug #508
Sam Lantinga <slouken@libsdl.org>
parents:
4121
diff
changeset
|
122 Fixed beeping when the escape key is pressed and UNICODE translation is enabled. |
9d90d7765fa7
Guillaume Borios fixed bug #508
Sam Lantinga <slouken@libsdl.org>
parents:
4121
diff
changeset
|
123 </P> |
9d90d7765fa7
Guillaume Borios fixed bug #508
Sam Lantinga <slouken@libsdl.org>
parents:
4121
diff
changeset
|
124 <P> |
4115
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
125 Improved trackpad scrolling support. |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
126 </P> |
4120 | 127 <P> |
128 Fixed joystick hat reporting for certain joysticks. | |
129 </P> | |
4115
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
130 </BLOCKQUOTE> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
131 |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
132 <IMG SRC="docs/images/rainbow.gif" ALT="[separator]" WIDTH="100%"> |
63b57f6b6523
Updated patch notes for 1.2.13
Sam Lantinga <slouken@libsdl.org>
parents:
4083
diff
changeset
|
133 |
3960
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
134 <H2> SDL 1.2.12 Release Notes </H2> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
135 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
136 SDL 1.2.12 is a minor bug fix release. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
137 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
138 |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
139 <H3> General Notes </H3> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
140 |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
141 <BLOCKQUOTE> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
142 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
143 Added support for the PulseAudio sound server: http://www.pulseaudio.org/ |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
144 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
145 <P> |
3982
0a0f8cccc77c
Updated "What's New" docs.
Ryan C. Gordon <icculus@icculus.org>
parents:
3976
diff
changeset
|
146 Added SDL_VIDEO_ALLOW_SCREENSAVER to override SDL's disabling of the screensaver on Mac OS X, Windows, and X11. |
3960
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
147 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
148 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
149 Fixed buffer overrun crash when resampling audio rates. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
150 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
151 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
152 Fixed audio bug where converting to mono was doubling the volume. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
153 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
154 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
155 Fixed off-by-one error in the C implementation of SDL_revcpy() |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
156 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
157 <P> |
3966
c0de2aac0a8c
Added patch note for subversion revision 3076
Sam Lantinga <slouken@libsdl.org>
parents:
3963
diff
changeset
|
158 Fixed compiling with Sun Studio. |
c0de2aac0a8c
Added patch note for subversion revision 3076
Sam Lantinga <slouken@libsdl.org>
parents:
3963
diff
changeset
|
159 </P> |
c0de2aac0a8c
Added patch note for subversion revision 3076
Sam Lantinga <slouken@libsdl.org>
parents:
3963
diff
changeset
|
160 <P> |
3960
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
161 Support for AmigaOS has been removed from the main SDL code. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
162 </P> |
3968
ae0be7edf7d0
Removed EPOC port...it's being replaced by an updated Symbian port with the
Ryan C. Gordon <icculus@icculus.org>
parents:
3966
diff
changeset
|
163 <P> |
ae0be7edf7d0
Removed EPOC port...it's being replaced by an updated Symbian port with the
Ryan C. Gordon <icculus@icculus.org>
parents:
3966
diff
changeset
|
164 Support for Nokia 9210 "EPOC" driver has been removed from the main SDL code. |
ae0be7edf7d0
Removed EPOC port...it's being replaced by an updated Symbian port with the
Ryan C. Gordon <icculus@icculus.org>
parents:
3966
diff
changeset
|
165 </P> |
3975 | 166 <P> |
167 Unofficial support for the S60/SymbianOS platform has been added. | |
168 </P> | |
3976
8582c6a5ca16
Added initial support for Nintendo DS, based on the work by Troy Davis (GPF)
Sam Lantinga <slouken@libsdl.org>
parents:
3975
diff
changeset
|
169 <P> |
8582c6a5ca16
Added initial support for Nintendo DS, based on the work by Troy Davis (GPF)
Sam Lantinga <slouken@libsdl.org>
parents:
3975
diff
changeset
|
170 Unofficial support for the Nintendo DS platform has been added. |
8582c6a5ca16
Added initial support for Nintendo DS, based on the work by Troy Davis (GPF)
Sam Lantinga <slouken@libsdl.org>
parents:
3975
diff
changeset
|
171 </P> |
4048
3e380b8247aa
Added more release notes.
Ryan C. Gordon <icculus@icculus.org>
parents:
4032
diff
changeset
|
172 <P> |
3e380b8247aa
Added more release notes.
Ryan C. Gordon <icculus@icculus.org>
parents:
4032
diff
changeset
|
173 Reenabled MMX assembly for YUV overlay processing (GNU C Compiler only). |
3e380b8247aa
Added more release notes.
Ryan C. Gordon <icculus@icculus.org>
parents:
4032
diff
changeset
|
174 </P> |
3960
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
175 </BLOCKQUOTE> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
176 |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
177 <H3> Unix Notes </H3> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
178 |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
179 <BLOCKQUOTE> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
180 <P> |
4021 | 181 Fixed detection of X11 DGA mouse support. |
182 </P> | |
183 <P> | |
3994
720c59bd38ac
Added some missing patch notes - Ryan, feel free to add them for your commits
Sam Lantinga <slouken@libsdl.org>
parents:
3993
diff
changeset
|
184 Improved XIM support for asian character sets. |
720c59bd38ac
Added some missing patch notes - Ryan, feel free to add them for your commits
Sam Lantinga <slouken@libsdl.org>
parents:
3993
diff
changeset
|
185 </P> |
720c59bd38ac
Added some missing patch notes - Ryan, feel free to add them for your commits
Sam Lantinga <slouken@libsdl.org>
parents:
3993
diff
changeset
|
186 <P> |
3960
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
187 The GFX_Display has been added to the X11 window information in SDL_syswm.h. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
188 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
189 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
190 Fixed PAGE_SIZE compile error in the fbcon video driver on newer Linux kernels. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
191 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
192 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
193 Fixed hang or crash at startup if aRts can't access the hardware. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
194 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
195 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
196 Fixed relative mouse mode when the cursor starts outside the X11 window. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
197 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
198 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
199 Fixed accidental free of stack memory in X11 mouse acceleration code. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
200 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
201 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
202 Closed minor memory leak in XME code. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
203 </P> |
4048
3e380b8247aa
Added more release notes.
Ryan C. Gordon <icculus@icculus.org>
parents:
4032
diff
changeset
|
204 <P> |
3e380b8247aa
Added more release notes.
Ryan C. Gordon <icculus@icculus.org>
parents:
4032
diff
changeset
|
205 Fixed TEXTRELs in the library to resolve some PIC issues. |
3e380b8247aa
Added more release notes.
Ryan C. Gordon <icculus@icculus.org>
parents:
4032
diff
changeset
|
206 </P> |
3960
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
207 </BLOCKQUOTE> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
208 |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
209 <H3> Windows Notes </H3> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
210 |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
211 <BLOCKQUOTE> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
212 <P> |
3993
8488d3c24dd5
Added patch note for fixing bug 335
Sam Lantinga <slouken@libsdl.org>
parents:
3982
diff
changeset
|
213 The GDI video driver makes better use of the palette in 8-bit modes. |
8488d3c24dd5
Added patch note for fixing bug 335
Sam Lantinga <slouken@libsdl.org>
parents:
3982
diff
changeset
|
214 </P> |
8488d3c24dd5
Added patch note for fixing bug 335
Sam Lantinga <slouken@libsdl.org>
parents:
3982
diff
changeset
|
215 <P> |
3970
203695f768e0
Added support for WM_XBUTTON to the windib driver, to support more mouse
Ryan C. Gordon <icculus@icculus.org>
parents:
3968
diff
changeset
|
216 The windib driver now supports more mouse buttons with WM_XBUTTON events. |
203695f768e0
Added support for WM_XBUTTON to the windib driver, to support more mouse
Ryan C. Gordon <icculus@icculus.org>
parents:
3968
diff
changeset
|
217 </P> |
203695f768e0
Added support for WM_XBUTTON to the windib driver, to support more mouse
Ryan C. Gordon <icculus@icculus.org>
parents:
3968
diff
changeset
|
218 <P> |
4083
a66ac59b3939
Added patch note for bug #461
Sam Lantinga <slouken@libsdl.org>
parents:
4074
diff
changeset
|
219 On Windows, SDL_SetVideoMode() will re-create the window instead of failing if the multisample settings are changed. |
a66ac59b3939
Added patch note for bug #461
Sam Lantinga <slouken@libsdl.org>
parents:
4074
diff
changeset
|
220 </P> |
a66ac59b3939
Added patch note for bug #461
Sam Lantinga <slouken@libsdl.org>
parents:
4074
diff
changeset
|
221 <P> |
3960
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
222 Added support for UTF-8 window titles on Windows. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
223 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
224 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
225 Fixed joystick detection on Windows. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
226 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
227 <P> |
4032
7247f700c018
Added patch note for file I/O speedup
Sam Lantinga <slouken@libsdl.org>
parents:
4025
diff
changeset
|
228 Improved performance with Win32 file I/O. |
7247f700c018
Added patch note for file I/O speedup
Sam Lantinga <slouken@libsdl.org>
parents:
4025
diff
changeset
|
229 </P> |
7247f700c018
Added patch note for file I/O speedup
Sam Lantinga <slouken@libsdl.org>
parents:
4025
diff
changeset
|
230 <P> |
3960
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
231 Fixed HBITMAP leak in GAPI driver. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
232 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
233 </BLOCKQUOTE> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
234 |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
235 <H3> Mac OS X Notes </H3> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
236 |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
237 <BLOCKQUOTE> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
238 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
239 Added support for multi-axis controllers like 3Dconnxion's SpaceNavigator on Mac OS X. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
240 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
241 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
242 Fixed YUV overlay crash inside Quicktime on Intel Mac OS X. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
243 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
244 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
245 Fixed blitting alignment in Altivec alpha blit functions. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
246 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
247 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
248 Keys F13, F14, and F15 are now usable on Apple keyboards under Mac OS X. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
249 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
250 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
251 Fixed joystick calibration code on Mac OS X. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
252 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
253 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
254 Fixed mouse jitter when multiple motion events are queued up in Mac OS X. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
255 </P> |
4074
fd1cbe7a706c
Added a patch note for the Mac OS X cursor bug
Sam Lantinga <slouken@libsdl.org>
parents:
4048
diff
changeset
|
256 <P> |
fd1cbe7a706c
Added a patch note for the Mac OS X cursor bug
Sam Lantinga <slouken@libsdl.org>
parents:
4048
diff
changeset
|
257 Fixed changing the cursor in fullscreen mode on Mac OS X. |
fd1cbe7a706c
Added a patch note for the Mac OS X cursor bug
Sam Lantinga <slouken@libsdl.org>
parents:
4048
diff
changeset
|
258 </P> |
3960
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
259 </BLOCKQUOTE> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
260 |
3963
a9ad5257f794
Added docs for revision 3073 - Ryan, feel free to do this yourself, if you want.
Sam Lantinga <slouken@libsdl.org>
parents:
3960
diff
changeset
|
261 <H3> Mac OS Classic Notes </H3> |
a9ad5257f794
Added docs for revision 3073 - Ryan, feel free to do this yourself, if you want.
Sam Lantinga <slouken@libsdl.org>
parents:
3960
diff
changeset
|
262 |
a9ad5257f794
Added docs for revision 3073 - Ryan, feel free to do this yourself, if you want.
Sam Lantinga <slouken@libsdl.org>
parents:
3960
diff
changeset
|
263 <BLOCKQUOTE> |
a9ad5257f794
Added docs for revision 3073 - Ryan, feel free to do this yourself, if you want.
Sam Lantinga <slouken@libsdl.org>
parents:
3960
diff
changeset
|
264 <P> |
a9ad5257f794
Added docs for revision 3073 - Ryan, feel free to do this yourself, if you want.
Sam Lantinga <slouken@libsdl.org>
parents:
3960
diff
changeset
|
265 Added support for gamma ramps to both toolbox and DrawSprocket video drivers. |
a9ad5257f794
Added docs for revision 3073 - Ryan, feel free to do this yourself, if you want.
Sam Lantinga <slouken@libsdl.org>
parents:
3960
diff
changeset
|
266 </P> |
a9ad5257f794
Added docs for revision 3073 - Ryan, feel free to do this yourself, if you want.
Sam Lantinga <slouken@libsdl.org>
parents:
3960
diff
changeset
|
267 </BLOCKQUOTE> |
a9ad5257f794
Added docs for revision 3073 - Ryan, feel free to do this yourself, if you want.
Sam Lantinga <slouken@libsdl.org>
parents:
3960
diff
changeset
|
268 |
3960
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
269 <H3> BeOS Notes </H3> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
270 |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
271 <BLOCKQUOTE> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
272 <P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
273 Implemented mouse grabbing and mouse relative mode on BeOS. |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
274 </P> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
275 </BLOCKQUOTE> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
276 |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
277 <IMG SRC="docs/images/rainbow.gif" ALT="[separator]" WIDTH="100%"> |
f5daa62ce1c4
Updated docs with bug fixes in subversion.
Sam Lantinga <slouken@libsdl.org>
parents:
1892
diff
changeset
|
278 |
1892
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
279 <H2> SDL 1.2.11 Release Notes </H2> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
280 <P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
281 SDL 1.2.11 is a minor bug fix release. |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
282 </P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
283 |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
284 <H3> Unix Notes </H3> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
285 |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
286 <BLOCKQUOTE> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
287 <P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
288 Dynamic X11 loading is only enabled with gcc 4 supporting -fvisibility=hidden. This fixes crashes related to symbol collisions, and allows building on Solaris and IRIX. |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
289 </P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
290 <P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
291 Fixed building SDL with Xinerama disabled. |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
292 </P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
293 <P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
294 Fixed DRI OpenGL library loading, using RTLD_GLOBAL in dlopen(). |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
295 </P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
296 <P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
297 Added pkgconfig configuration support. |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
298 </P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
299 </BLOCKQUOTE> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
300 |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
301 <H3> Windows Notes </H3> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
302 |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
303 <BLOCKQUOTE> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
304 <P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
305 Setting SDL_GL_SWAP_CONTROL now works with Windows OpenGL. |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
306 </P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
307 <P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
308 The Win32 window positioning code works properly for windows with menus. |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
309 </P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
310 <P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
311 DirectSound audio quality has been improved on certain sound cards. |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
312 </P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
313 <P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
314 Fixed 5.1 audio channel ordering on Windows and Mac OS X. |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
315 </P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
316 <P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
317 Plugged a couple of minor memory leaks in the windib video driver. |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
318 </P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
319 <P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
320 Fixed type collision with stdint.h when building with gcc on Win32. |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
321 </P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
322 <P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
323 Fixed building with the Digital Mars Compiler on Win32. |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
324 </P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
325 </BLOCKQUOTE> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
326 |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
327 <H3> Mac OS X Notes </H3> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
328 |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
329 <BLOCKQUOTE> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
330 <P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
331 The Quartz video driver supports 32x32 cursors on Mac OS X 10.3 and above. |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
332 </P> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
333 </BLOCKQUOTE> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
334 |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
335 <IMG SRC="docs/images/rainbow.gif" ALT="[separator]" WIDTH="100%"> |
c08abb88531b
Added 1.2.11 patch notes
Sam Lantinga <slouken@libsdl.org>
parents:
1840
diff
changeset
|
336 |
1840
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
337 <H2> SDL 1.2.10 Release Notes </H2> |
0 | 338 <P> |
1840
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
339 SDL 1.2.10 is a major release, featuring a revamp of the build system and many API improvements and bug fixes. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
340 </P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
341 <H3> API enhancements </H3> |
0 | 342 <UL> |
1840
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
343 <LI> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
344 If SDL_OpenAudio() is passed zero for the desired format |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
345 fields, the following environment variables will be used |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
346 to fill them in: |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
347 <pre><code> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
348 SDL_AUDIO_FREQUENCY |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
349 SDL_AUDIO_FORMAT |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
350 SDL_AUDIO_CHANNELS |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
351 SDL_AUDIO_SAMPLES |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
352 </code></pre> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
353 If an environment variable is not specified, it will be set |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
354 to a reasonable default value. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
355 <LI> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
356 SDL_SetVideoMode() now accepts 0 for width or height and will use |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
357 the current video mode (or the desktop mode if no mode has been set.) |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
358 <LI> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
359 Added current_w and current_h to the SDL_VideoInfo structure, |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
360 which is set to the desktop resolution during video intialization, |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
361 and then set to the current resolution when a video mode is set. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
362 <LI> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
363 SDL_GL_LoadLibrary() will load the system default OpenGL library |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
364 if it is passed NULL as a parameter. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
365 <LI> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
366 Added SDL_GL_SWAP_CONTROL to wait for vsync in OpenGL applications. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
367 <LI> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
368 Added SDL_GL_ACCELERATED_VISUAL to guarantee hardware acceleration. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
369 <LI> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
370 SDL_WM_SetCaption() now officially takes UTF-8 title and icon strings, and displays international characters on supported platforms. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
371 <LI> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
372 Added SDL_GetKeyRepeat() to query the key repeat settings. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
373 <LI> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
374 Added the "dummy" audio driver, which can be used to emulate audio |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
375 output without a sound card. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
376 <LI> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
377 Added SDL_config.h, with defaults for various build environments. |
0 | 378 </UL> |
379 | |
1840
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
380 <H3> General Notes </H3> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
381 |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
382 <BLOCKQUOTE> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
383 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
384 The SDL website now has an <A HREF="http://www.libsdl.org/rss/rss.xml">RSS feed</A>! |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
385 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
386 The SDL development source code is now managed with <A HREF="http://www.libsdl.org/svn.php">Subversion</A>. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
387 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
388 SDL now uses the Bugzilla <A HREF="http://bugzilla.libsdl.org/">bug tracking system</A>, hosted by icculus.org. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
389 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
390 SDL is licensed under version 2.1 of the GNU Lesser General Public License. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
391 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
392 The entire build system has been revamped to make it much more portable, including versions of C library functions to make it possible to run SDL on a minimal embedded environment. See README.Porting in the SDL source distribution for information on how to port SDL to a new platform. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
393 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
394 SDL_opengl.h has been updated with the latest glext.h from <A HREF="http://oss.sgi.com/projects/ogl-sample/registry/">http://oss.sgi.com/projects/ogl-sample/registry/</A> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
395 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
396 Alex Volkov contributed highly optimized RGB <-> RGBA blitters. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
397 </BLOCKQUOTE> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
398 |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
399 <H3> Unix Notes </H3> |
0 | 400 |
1840
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
401 <BLOCKQUOTE> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
402 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
403 The X11 libraries are dynamically loaded at runtime by default. This allows the distributed version of SDL to run on systems without X11 libraries installed. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
404 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
405 The XiG XME extension code is now included in the X11 video driver by default. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
406 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
407 XRandR support for video mode switching has been added to the X11 driver, but is disabled because of undesired interactions with window managers. You can enable this by setting the environment variable SDL_VIDEO_X11_XRANDR to 1. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
408 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
409 Xinerama multi-head displays are properly handled now, and the SDL_VIDEO_FULLSCREEN_HEAD environment variable can be used to select the screen used for fullscreen video modes. Note that changing the video modes only works on screen 0. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
410 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
411 XVidMode video modes are now sorted so they maintain the refresh rates specified in the X11 configuration file. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
412 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
413 SDL windows are no longer transparent in X11 compositing systems like XGL. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
414 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
415 The mouse is properly released by the X11 video driver if the fullscreen window loses focus. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
416 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
417 The X11 input driver now uses XIM to handle international input. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
418 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
419 The screensaver and DPMS monitor blanking are disabled while SDL games are running under the X11 and DGA video drivers. This behavior will be formalized and selectable in SDL 1.3. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
420 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
421 Fixed a bug preventing stereo OpenGL contexts from being selected on the X11 driver. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
422 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
423 The DGA video driver now waits for pending blits involving surfaces before they are freed. This prevents display oddities when using SDL_DisplayFormat() to convert many images. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
424 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
425 The framebuffer console video driver now has a parser for /etc/fb.modes for improved video mode handling. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
426 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
427 The framebuffer console video driver now allows asynchronous VT switching, and restores the full contents of the screen when switched back. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
428 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
429 The framebuffer console now uses CTRL-ALT-FN to switch virtual terminals, to avoid collisions with application key bindings. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
430 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
431 The framebuffer console input driver correctly sets IMPS/2 mode for wheel mice. It also properly detects when gpm is in IMPS/2 protocol mode, or passing raw protocol from an IMPS/2 mouse. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
432 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
433 The SVGAlib video driver now has support for banked (non-linear) video modes. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
434 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
435 A video driver for OpenBSD on the Sharp Zaurus has been contributed by Staffan Ulfberg. See the file README.wscons in the SDL source distribution for details. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
436 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
437 Many patches have been incorporated from *BSD ports. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
438 </BLOCKQUOTE> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
439 |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
440 <H3> Windows Notes </H3> |
0 | 441 |
1840
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
442 <BLOCKQUOTE> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
443 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
444 The "windib" video driver is the default now, to prevent problems with certain laptops, 64-bit Windows, and Windows Vista. The DirectX driver is still available, and can be selected by setting the environment variable SDL_VIDEODRIVER to "directx". |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
445 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
446 SDL has been ported to 64-bit Windows. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
447 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
448 Dmitry Yakimov contributed a GAPI video driver for Windows CE. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
449 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
450 The default fullscreen refresh rate has been increased to match the desktop refresh rate, when using equivalent resolutions. A full API for querying and selecting refresh rates is planned for SDL 1.3. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
451 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
452 Dialog boxes are now shown when SDL is in windowed OpenGL mode. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
453 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
454 The SDL window is recreated when necessary to maintain OpenGL context attributes, when switching between windowed and fullscreen modes. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
455 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
456 An SDL_VIDEORESIZE event is properly sent when the SDL window is maximized and restored. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
457 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
458 Window positions are retained when switching between fullscreen and windowed modes. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
459 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
460 ToUnicode() is used, when available, for improved handling of international keyboard input. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
461 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
462 The PrtScrn is now treated normally with both key down and key up events. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
463 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
464 Pressing ALT-F4 now delivers an SDL_QUIT event to SDL applications. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
465 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
466 Joystick names are now correct for joysticks which have been unplugged and then plugged back in since booting. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
467 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
468 An MCI error when playing the last track on a CD-ROM has been fixed. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
469 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
470 OpenWatcom projects for building SDL have been provided by Marc Peter. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
471 </BLOCKQUOTE> |
0 | 472 |
1840
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
473 <H3> Mac OS X Notes </H3> |
0 | 474 |
1840
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
475 <BLOCKQUOTE> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
476 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
477 SDL now supports building Universal binaries, both through Xcode projects and when using configure/make. See README.MacOSX in the SDL source archive for details. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
478 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
479 The X11 video driver with GLX support can be built on Mac OS X, if the X11 development SDK is installed. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
480 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
481 Transitions between fullscreen resolutions and windowed mode now use a much faster asynchronous fade to hide desktop flicker. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
482 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
483 Icons set with SDL_WM_SetIcon() now have the proper colors on Intel Macs. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
484 </BLOCKQUOTE> |
0 | 485 |
1840
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
486 <H3> OS/2 Notes </H3> |
0 | 487 |
1840
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
488 <BLOCKQUOTE> |
0 | 489 <P> |
1840
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
490 Projects for building SDL on OS/2 with OpenWatcom have been contributed by Doodle. See the file README.OS2 in the SDL source distribution for details. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
491 </BLOCKQUOTE> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
1124
diff
changeset
|
492 |
0 | 493 <IMG SRC="docs/images/rainbow.gif" ALT="[separator]" WIDTH="100%"> |
494 | |
495 </BODY> | |
496 </HTML> |