# HG changeset patch # User Sam Lantinga # Date 1000435269 0 # Node ID e5bc29de3f0a0ba2f831829886ec931c22bb7144 # Parent 578815880307325f36bee6eebf9e1da990f3824e Updated from the SDL Documentation Project diff -r 578815880307 -r e5bc29de3f0a docs/html/Makefile.am --- a/docs/html/Makefile.am Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/html/Makefile.am Fri Sep 14 02:41:09 2001 +0000 @@ -70,6 +70,7 @@ sdlenableunicode.html \ sdlevent.html \ sdleventstate.html \ + sdlexposeevent.html \ sdlfillrect.html \ sdlflip.html \ sdlfreecursor.html \ @@ -80,6 +81,7 @@ sdlgetaudiostatus.html \ sdlgetcliprect.html \ sdlgetcursor.html \ + sdlgeterror.html \ sdlgeteventfilter.html \ sdlgetgammaramp.html \ sdlgetkeyname.html \ diff -r 578815880307 -r e5bc29de3f0a docs/html/event.html --- a/docs/html/event.html Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/html/event.html Fri Sep 14 02:41:09 2001 +0000 @@ -85,7 +85,7 @@ >
Introduction

Introduction

SDL_Init(SDL_INIT_VIDEO); -Interally, SDL stores all the events waiting to be handled in an event queue. Using functions like — Enable/disable joystick event polling

SDL_PumpEventsPumps the event loop, gathering events from the input devices
SDL_PeepEventsChecks the event queue for messages and optionally returns them
SDL_PollEventPolls for currently pending events
SDL_WaitEventWaits indefinitely for the next available event
SDL_PushEventPushes an event onto the event queue
SDL_SetEventFilterSets up a filter to process all events
SDL_EventStateAllows you to set the state of processing certain events
SDL_GetKeyStateGet a snapshot of the current keyboard state
SDL_GetModStateGet the state of modifier keys
SDL_SetModStateSet the state of modifier keys
SDL_GetKeyNameGet the name of an SDL virtual keysym
SDL_EnableUNICODEEnable UNICODE translation
SDL_EnableKeyRepeatSet keyboard repeat rate
SDL_GetMouseStateRetrieve the current state of the mouse
SDL_GetRelativeMouseStateRetrieve the current state of the mouse
SDL_GetAppStateGet the state of the application
SDL_JoystickEventStateEnable/disable joystick event polling

SDL_InitSubSystem. ). SDL_Init must be called before any other SDL function. It automatically initializes the Event Handling, File I/O and Threading subsystems and it takes a parameter specifying which other subsystems to initialize. So, to initialize the default subsystems and the Video subsystems you would call: diff -r 578815880307 -r e5bc29de3f0a docs/html/guidecdromexamples.html --- a/docs/html/guidecdromexamples.html Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/html/guidecdromexamples.html Fri Sep 14 02:41:09 2001 +0000 @@ -201,7 +201,7 @@ // Play first and second track and 10 seconds of third track: if ( CD_INDRIVE(SDL_CDStatus(cdrom)) ) - SDL_CDPlayTracks(cdrom, 0, 0, 2, 10);

Advanced Joystick Functions

That takes care of the controls that you can count on being on every joystick under the sun, but there are a few extra things that SDL can support. Joyballs are next on our list, they are alot like axis we a few minor differences. Joyballs store relative changes unlike the the absolute postion stored in a axis event. Also one trackball event contains both the change in x and they change in y. Our case for it is as follows:

That takes care of the controls that you can count on being on every joystick under the sun, but there are a few extra things that SDL can support. Joyballs are next on our list, they are alot like axis with a few minor differences. Joyballs store relative changes unlike the the absolute postion stored in a axis event. Also one trackball event contains both the change in x and they change in y. Our case for it is as follows:

SDL_WasInit — Check which subsystems are initialized
SDL_GetError — Get SDL error string
Introduction
8-1. SDL Keysym definitions

Name

Structure Definition

Structure Data

Description

See Also

Name

Synopsis

Description

Return Value

Examples

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Values

Examples

See Also

Name

Structure Definition

Structure Data

Description

Examples

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Examples

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Examples

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Values

See Also

Name

Synopsis

Description

Return Value

Examples

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Example

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Synopsis

Description

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Examples

See Also

Name

Synopsis

#include "SDL.h"
#include "SDL/SDL.h"

Description

SDL_DisplayFormat.

This function can only be called after SDL_Init.

Return Value

See Also

Name

Synopsis

Description

Examples

See Also

Name

Synopsis

Description

Example

See Also

Name

Synopsis

Description

Examples

See Also

Name

Synopsis

Description

Return Value

Example

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

Examples

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Examples

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Values

Returns 0 on success

See Also

Name

Synopsis

Description

Return Value

Name

Synopsis

Description

Enables/Disables UNICODE keyboard translation.

Enables/Disables Unicode keyboard translation.

If you wish to translate a keysym to it's printable representation, you need to enable UNICODE translation -using this function (enable=0) and then look in the To obtain the character codes corresponding to received keyboard events, +Unicode translation must first be turned on using this function. The +translation incurs a slight overhead for each keyboard event and is therefore +disabled by default. For each subsequently received key down event, the +unicode member -of the member of the +SDL_keysym structure. This value will be zero for keysyms -that do not have a printable representation. UNICODE translation is disabled by default as the conversion can cause a slight overhead.

structure +will then contain the corresponding character code, or zero for keysyms that do +not correspond to any character code.

A value of 1 for enable enables Unicode translation; +0 disables it, and -1 leaves it unchanged (useful for querying the current +translation mode).

Note that only key press events will be translated, not release events.

Return Value

Returns the previous translation mode.

Returns the previous translation mode (0 or 1).

See Also

Name

Structure Definition

Structure Data

exposeApplication window expose eventquit

Description

SDL_VIDEOEXPOSESDL_ExposeEventSDL_USEREVENT

Use

See Also

Name

Synopsis

Description

See Also

SDL_ExposeEvent
SDL Library Documentation
PrevNext

SDL_ExposeEvent

Name

SDL_ExposeEvent -- Quit requested event

Structure Definition

typedef struct{
+  Uint8 type
+} SDL_ExposeEvent;

Structure Data

typeSDL_QUIT

Description

SDL_ExposeEvent is a member of the SDL_Event union and is used whan an event of type SDL_VIDEOEXPOSE is reported.

A VIDEOEXPOSE event is triggered when the screen has been modified +outside of the application, usually by the window manager and needs to +be redrawn.


PrevHomeNext
SDL_ResizeEventUpSDL_SysWMEvent
\ No newline at end of file diff -r 578815880307 -r e5bc29de3f0a docs/html/sdlfillrect.html --- a/docs/html/sdlfillrect.html Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/html/sdlfillrect.html Fri Sep 14 02:41:09 2001 +0000 @@ -73,7 +73,7 @@ >

Name

Synopsis

Description

SDL_MapRGB or SDL_MapRGBA -function.

If there is a clip rectangle set on the destination (set via dstrect rectangle.

rectangle and the dstrect rectangle +will be modified to represent the area actually filled.

Return Value

See Also

, SDL_MapRGBA, +

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

SDL_GetError
SDL Library Documentation
PrevNext

SDL_GetError

Name

SDL_GetError -- Get SDL error string

Synopsis

#include "SDL/SDL.h"

char *SDL_GetError(void);

Description

SDL_GetError returns a NULL terminated string containing information about the last internal SDL error.

Return Value

SDL_GetError returns a string containing the last error.


PrevHomeNext
SDL_WasInitUpVideo
\ No newline at end of file diff -r 578815880307 -r e5bc29de3f0a docs/html/sdlgeteventfilter.html --- a/docs/html/sdlgeteventfilter.html Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/html/sdlgeteventfilter.html Fri Sep 14 02:41:09 2001 +0000 @@ -73,7 +73,7 @@ >

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

SDLK_* symbols. A value of 1 means the key is pressed and a value of 0 means its not.

symbols. A value of 1 means the key is pressed and a value of 0 means its not. The pointer returned is a pointer to an internal SDL array and should not be freed by the caller.

Example

See Also

Name

Synopsis

Description

Returns the current of the modifier keys (CTRL, ALT, etc.).

Returns the current state of the modifier keys (CTRL, ALT, etc.).

Return Value

The return value can be an OR'd combination of the SDLMod enum.

SDL also defines the following symbols for convenience:

See Also

Name

Synopsis

Description

Example

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Attributes

Description

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Example

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Return Value

Example

See Also

Name

Synopsis

Description

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

Examples

See Also

Name

Synopsis

Description

Return Value

Examples

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

Examples

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

Examples

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

See Also

Name

Description

Name

Structure Definition

Structure Data

Description

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Example

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Example

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

-

Return Value

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

and should be set to the maximum value for full audio volume. Note this does not change hardware volume. This is provided for convenience -- you can mix your own audio data.

Note: Do not use this function for mixing together more than two streams of sample +data. The output from repeated application of this function may be distorted +by clipping, because there is no accumulator with greater range than the +input (not to mention this being an inefficient way of doing it). +Use mixing functions from SDL_mixer, OpenAL, or write your own mixer instead.

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Examples

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Synopsis

Description

Examples

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Return Value

Examples

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Synopsis

Description

Return Value

Examples

See Also

Next

Name

Structure Definition

Structure Data

Description

See Also

NextSDL_SysWMEventSDL_ExposeEvent

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

Examples

See Also

Name

Synopsis

Description

Return Value

Examples

See Also

Name

Synopsis

Description

Return Value

Examples

See Also

Name

Synopsis

Description

Return Value

Examples

See Also

Name

Synopsis

Description

Return Value

Examples

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

Example

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Return Value

Example

See Also

Name

Synopsis

Description

Examples

See Also

Name

Synopsis

Description

Enables the use of asynchronous to the display surface. This will usually slow down blitting on single CPU machines, but may provide a speed increase on SMP systems.Enables the use of asynchronous updates of the display surface. This will +usually slow down blitting on single CPU machines, but may provide a speed +increase on SMP systems.Normally, if a video surface of the requested depth (Normally, if a video surface of the requested bits-per-pixel (bpp) is not available, SDL will emulate one with a shadow surface. Passing SDL_ANYFORMAT prevents this and causes SDL to use the video surface, regardless of its depth. prevents this and causes SDL to use the video surface, regardless of its pixel depth.SDL_SetColors or SDL_SetPalette.Enable double buffering; only valid with SDL_HWSURFACE. Calling Enable hardware double buffering; only valid with SDL_HWSURFACE. Calling +SDL_Flip will flip the buffers and update the screen. If double buffering could not be enabled then will flip the +buffers and update the screen. All drawing will take place on the surface +that is not displayed at the moment. If double buffering could not be enabled +then SDL_Flip will just perform a will just perform a +SDL_UpdateRect on the entire screen. +on the entire screen.SDL will attempt to use a fullscreen modeSDL will attempt to use a fullscreen mode. If a hardware resolution change is +not possible (for whatever reason), the next higher resolution will be used and +the display window centered on a black background.Create an OpenGL rendering context, like above, but allow normal blitting operations.Create an OpenGL rendering context, like above, but allow normal blitting +operations. The screen (2D) surface may have an alpha channel, and +SDL_UpdateRects +must be used for updating changes to the screen surface. member of the returned surface.

Note: The bpp parameter is the number of bits per pixel, +so a bpp of 24 uses the packed representation of +3 bytes/pixel. For the more common 4 bytes/pixel mode, use a +bpp of 32. Somewhat oddly, both 15 and 16 will +request a 2 bytes/pixel mode, but different pixel formats.

Return Value

The framebuffer surface, or NULL if it fails.

if it fails. +The surface returned is freed by SDL_Quit() and should nt be freed by +the caller.

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Structure Definition

Structure Data

Description

See Also

Prev

Name

Description

See Also

PrevSDL_ResizeEventSDL_ExposeEvent

Name

Synopsis

Description

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

See Also

Name

Structure Definition

Structure Data

Description

Examples

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Structure Definition

Structure Data

Description

See Also

Name

Synopsis

Description

Example

See Also

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Return Value

See Also

Name

Synopsis

Description

See Also

NextNextVideoSDL_GetError

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Return Value

Name

Synopsis

Description

Return Value

Name

Synopsis

Description

See Also

Name

Synopsis

Description

Sets the icon for the display window.

Sets the icon for the display window. Win32 icons must be 32x32.

This function must be called before the first call to

Example

See Also

Name

Synopsis

Description

Return Value

Note: SDL's threading is not implemented on MacOS, due to that lack of preemptive thread support (eck!)

SDL's threading is not implemented on MacOS, due to that lack of preemptive thread support (MacOS X dos nt suffer from this problem)

PrevPrevSDL_WasInitSDL_GetErrorformat=AUDIO_S16LSB; +/* Mono */ +desired->channels=0; + /* Large audio buffer reduces risk of dropouts but increases response time */ desired->samples=8192; @@ -91,4 +94,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_AudioSpec\fP\fR, \fI\fBSDL_LockAudio\fP\fR, \fI\fBSDL_UnlockAudio\fP\fR, \fI\fBSDL_PauseAudio\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_Overlay.3 --- a/docs/man3/SDL_Overlay.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_Overlay.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_Overlay" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_Overlay" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_Overlay\- YUV video overlay .SH "STRUCTURE DEFINITION" @@ -49,4 +49,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_CreateYUVOverlay\fP\fR, \fI\fBSDL_LockYUVOverlay\fP\fR, \fI\fBSDL_UnlockYUVOverlay\fP\fR, \fI\fBSDL_FreeYUVOverlay\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_Palette.3 --- a/docs/man3/SDL_Palette.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_Palette.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_Palette" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_Palette" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_Palette\- Color palette for 8-bit pixel formats .SH "STRUCTURE DEFINITION" @@ -23,4 +23,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_Color\fR\fR, \fI\fBSDL_Surface\fR\fR, \fI\fBSDL_SetColors\fP\fR \fI\fBSDL_SetPalette\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_PauseAudio.3 --- a/docs/man3/SDL_PauseAudio.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_PauseAudio.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_PauseAudio" "3" "Sun 10 Jun 2001, 19:40" "SDL" "SDL API Reference" +.TH "SDL_PauseAudio" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" SDL_PauseAudio\- Pauses and unpauses the audio callback processing .SH "SYNOPSIS" @@ -12,4 +12,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_GetAudioStatus\fP\fR, \fI\fBSDL_OpenAudio\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_PeepEvents.3 --- a/docs/man3/SDL_PeepEvents.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_PeepEvents.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_PeepEvents" "3" "Sun 10 Jun 2001, 19:40" "SDL" "SDL API Reference" +.TH "SDL_PeepEvents" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" SDL_PeepEvents\- Checks the event queue for messages and optionally returns them\&. .SH "SYNOPSIS" @@ -23,4 +23,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_PollEvent\fP\fR, \fI\fBSDL_PushEvent\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_PixelFormat.3 --- a/docs/man3/SDL_PixelFormat.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_PixelFormat.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_PixelFormat" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_PixelFormat" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_PixelFormat\- Stores surface format information .SH "STRUCTURE DEFINITION" @@ -137,4 +137,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_Surface\fR\fR, \fI\fBSDL_MapRGB\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_PollEvent.3 --- a/docs/man3/SDL_PollEvent.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_PollEvent.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_PollEvent" "3" "Sun 10 Jun 2001, 19:40" "SDL" "SDL API Reference" +.TH "SDL_PollEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" SDL_PollEvent\- Polls for currently pending events\&. .SH "SYNOPSIS" @@ -41,4 +41,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_WaitEvent\fP\fR, \fI\fBSDL_PeepEvents\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_PumpEvents.3 --- a/docs/man3/SDL_PumpEvents.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_PumpEvents.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_PumpEvents" "3" "Sun 10 Jun 2001, 19:40" "SDL" "SDL API Reference" +.TH "SDL_PumpEvents" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" SDL_PumpEvents\- Pumps the event loop, gathering events from the input devices\&. .SH "SYNOPSIS" @@ -20,4 +20,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_PollEvent\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_PushEvent.3 --- a/docs/man3/SDL_PushEvent.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_PushEvent.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_PushEvent" "3" "Sun 10 Jun 2001, 19:40" "SDL" "SDL API Reference" +.TH "SDL_PushEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" SDL_PushEvent\- Pushes an event onto the event queue .SH "SYNOPSIS" @@ -24,4 +24,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_PollEvent\fP\fR, \fI\fBSDL_PeepEvents\fP\fR, \fI\fBSDL_Event\fR\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_Quit.3 --- a/docs/man3/SDL_Quit.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_Quit.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_Quit" "3" "Sun 10 Jun 2001, 19:41" "SDL" "SDL API Reference" +.TH "SDL_Quit" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" SDL_Quit\- Shut down SDL .SH "SYNOPSIS" @@ -26,4 +26,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_QuitSubsystem\fP\fR, \fI\fBSDL_Init\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:41 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_QuitEvent.3 --- a/docs/man3/SDL_QuitEvent.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_QuitEvent.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_QuitEvent" "3" "Sun 10 Jun 2001, 19:40" "SDL" "SDL API Reference" +.TH "SDL_QuitEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" SDL_QuitEvent\- Quit requested event .SH "STRUCTURE DEFINITION" @@ -27,4 +27,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_SetEventFilter\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_QuitSubSystem.3 --- a/docs/man3/SDL_QuitSubSystem.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_QuitSubSystem.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_QuitSubSystem" "3" "Sun 10 Jun 2001, 19:41" "SDL" "SDL API Reference" +.TH "SDL_QuitSubSystem" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" SDL_QuitSubSystem\- Shut down a subsystem .SH "SYNOPSIS" @@ -12,4 +12,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_Quit\fP\fR, \fI\fBSDL_Init\fP\fR, \fI\fBSDL_InitSubSystem\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:41 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_RWFromFile.3 --- a/docs/man3/SDL_RWFromFile.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_RWFromFile.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_FunctionName" "3" "Sun 10 Jun 2001, 19:40" "SDL" "SDL API Reference" +.TH "SDL_FunctionName" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" SDL_FunctionName\- Short description of function .SH "SYNOPSIS" @@ -15,4 +15,4 @@ .SH "SEE ALSO" .PP \fISDL_AnotherFunction\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_Rect.3 --- a/docs/man3/SDL_Rect.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_Rect.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_Rect" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_Rect" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_Rect\- Defines a rectangular area .SH "STRUCTURE DEFINITION" @@ -23,4 +23,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_BlitSurface\fP\fR, \fI\fBSDL_UpdateRect\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_RemoveTimer.3 --- a/docs/man3/SDL_RemoveTimer.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_RemoveTimer.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_RemoveTimer" "3" "Sun 10 Jun 2001, 19:41" "SDL" "SDL API Reference" +.TH "SDL_RemoveTimer" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_RemoveTimer\- Remove a timer which was added with \fISDL_AddTimer\fR\&. .SH "SYNOPSIS" @@ -22,4 +22,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_AddTimer\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:41 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_ResizeEvent.3 --- a/docs/man3/SDL_ResizeEvent.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_ResizeEvent.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_ResizeEvent" "3" "Sun 10 Jun 2001, 19:40" "SDL" "SDL API Reference" +.TH "SDL_ResizeEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" SDL_ResizeEvent\- Window resize event structure .SH "STRUCTURE DEFINITION" @@ -25,4 +25,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_SetVideoMode\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SaveBMP.3 --- a/docs/man3/SDL_SaveBMP.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SaveBMP.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SaveBMP" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_SaveBMP" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_SaveBMP\- Save an SDL_Surface as a Windows BMP file\&. .SH "SYNOPSIS" @@ -15,4 +15,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_LoadBMP\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SemPost.3 --- a/docs/man3/SDL_SemPost.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SemPost.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SemPost" "3" "Sun 10 Jun 2001, 19:41" "SDL" "SDL API Reference" +.TH "SDL_SemPost" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" SDL_SemPost\- Unlock a semaphore\&. .SH "SYNOPSIS" @@ -25,4 +25,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_CreateSemaphore\fP\fR, \fI\fBSDL_DestroySemaphore\fP\fR, \fI\fBSDL_SemWait\fP\fR, \fI\fBSDL_SemTryWait\fP\fR, \fI\fBSDL_SemWaitTimeout\fP\fR, \fI\fBSDL_SemValue\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:41 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SemTryWait.3 --- a/docs/man3/SDL_SemTryWait.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SemTryWait.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SemTryWait" "3" "Sun 10 Jun 2001, 19:41" "SDL" "SDL API Reference" +.TH "SDL_SemTryWait" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" SDL_SemTryWait\- Attempt to lock a semaphore but don\&'t suspend the thread\&. .SH "SYNOPSIS" @@ -38,4 +38,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_CreateSemaphore\fP\fR, \fI\fBSDL_DestroySemaphore\fP\fR, \fI\fBSDL_SemWait\fP\fR, \fI\fBSDL_SemWaitTimeout\fP\fR, \fI\fBSDL_SemPost\fP\fR, \fI\fBSDL_SemValue\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:41 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SemValue.3 --- a/docs/man3/SDL_SemValue.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SemValue.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SemValue" "3" "Sun 10 Jun 2001, 19:41" "SDL" "SDL API Reference" +.TH "SDL_SemValue" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" SDL_SemValue\- Return the current value of a semaphore\&. .SH "SYNOPSIS" @@ -23,4 +23,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_CreateSemaphore\fP\fR, \fI\fBSDL_DestroySemaphore\fP\fR, \fI\fBSDL_SemWait\fP\fR, \fI\fBSDL_SemTryWait\fP\fR, \fI\fBSDL_SemWaitTimeout\fP\fR, \fI\fBSDL_SemPost\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:41 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SemWait.3 --- a/docs/man3/SDL_SemWait.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SemWait.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SemWait" "3" "Sun 10 Jun 2001, 19:41" "SDL" "SDL API Reference" +.TH "SDL_SemWait" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" SDL_SemWait\- Lock a semaphore and suspend the thread if the semaphore value is zero\&. .SH "SYNOPSIS" @@ -31,4 +31,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_CreateSemaphore\fP\fR, \fI\fBSDL_DestroySemaphore\fP\fR, \fI\fBSDL_SemTryWait\fP\fR, \fI\fBSDL_SemWaitTimeout\fP\fR, \fI\fBSDL_SemPost\fP\fR, \fI\fBSDL_SemValue\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:41 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SemWaitTimeout.3 --- a/docs/man3/SDL_SemWaitTimeout.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SemWaitTimeout.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SemWaitTimeout" "3" "Sun 10 Jun 2001, 19:41" "SDL" "SDL API Reference" +.TH "SDL_SemWaitTimeout" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" SDL_SemWaitTimeout\- Lock a semaphore, but only wait up to a specified maximum time\&. .SH "SYNOPSIS" @@ -38,4 +38,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_CreateSemaphore\fP\fR, \fI\fBSDL_DestroySemaphore\fP\fR, \fI\fBSDL_SemWait\fP\fR, \fI\fBSDL_SemTryWait\fP\fR, \fI\fBSDL_SemPost\fP\fR, \fI\fBSDL_SemValue\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:41 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SetAlpha.3 --- a/docs/man3/SDL_SetAlpha.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SetAlpha.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SetAlpha" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_SetAlpha" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_SetAlpha\- Adjust the alpha properties of a surface .SH "SYNOPSIS" @@ -63,4 +63,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_MapRGBA\fP\fR, \fI\fBSDL_GetRGBA\fP\fR, \fI\fBSDL_DisplayFormatAlpha\fP\fR, \fI\fBSDL_BlitSurface\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SetClipRect.3 --- a/docs/man3/SDL_SetClipRect.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SetClipRect.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SetClipRect" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_SetClipRect" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_SetClipRect\- Sets the clipping rectangle for a surface\&. .SH "SYNOPSIS" @@ -16,4 +16,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_GetClipRect\fP\fR, \fI\fBSDL_BlitSurface\fP\fR, \fI\fBSDL_Surface\fR\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SetColorKey.3 --- a/docs/man3/SDL_SetColorKey.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SetColorKey.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SetColorKey" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_SetColorKey" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_SetColorKey\- Sets the color key (transparent pixel) in a blittable surface and RLE acceleration\&. .SH "SYNOPSIS" @@ -23,4 +23,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_BlitSurface\fP\fR, \fI\fBSDL_DisplayFormat\fP\fR, \fI\fBSDL_MapRGB\fP\fR, \fI\fBSDL_SetAlpha\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SetColors.3 --- a/docs/man3/SDL_SetColors.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SetColors.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SetColors" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_SetColors" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_SetColors\- Sets a portion of the colormap for the given 8-bit surface\&. .SH "SYNOPSIS" @@ -54,4 +54,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_Color\fR\fR \fI\fBSDL_Surface\fR\fR, \fI\fBSDL_SetPalette\fP\fR, \fI\fBSDL_SetVideoMode\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SetCursor.3 --- a/docs/man3/SDL_SetCursor.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SetCursor.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SetCursor" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_SetCursor" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_SetCursor\- Set the currently active mouse cursor\&. .SH "SYNOPSIS" @@ -12,4 +12,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_GetCursor\fP\fR, \fI\fBSDL_CreateCursor\fP\fR, \fI\fBSDL_ShowCursor\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SetEventFilter.3 --- a/docs/man3/SDL_SetEventFilter.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SetEventFilter.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SetEventFilter" "3" "Sun 10 Jun 2001, 19:40" "SDL" "SDL API Reference" +.TH "SDL_SetEventFilter" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" SDL_SetEventFilter\- Sets up a filter to process all events before they are posted to the event queue\&. .SH "SYNOPSIS" @@ -32,4 +32,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_GetEventFilter\fP\fR, \fI\fBSDL_PushEvent\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SetGamma.3 --- a/docs/man3/SDL_SetGamma.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SetGamma.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SetGamma" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_SetGamma" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_SetGamma\- Sets the color gamma function for the display .SH "SYNOPSIS" @@ -19,4 +19,4 @@ .SH "SEE ALSO" .PP \fISDL_GetGammaRamp\fR \fISDL_SetGammaRamp\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SetGammaRamp.3 --- a/docs/man3/SDL_SetGammaRamp.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SetGammaRamp.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SetGammaRamp" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_SetGammaRamp" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_SetGammaRamp\- Sets the color gamma lookup tables for the display .SH "SYNOPSIS" @@ -19,4 +19,4 @@ .SH "SEE ALSO" .PP \fISDL_SetGamma\fR \fISDL_GetGammaRamp\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SetModState.3 --- a/docs/man3/SDL_SetModState.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SetModState.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SetModState" "3" "Sun 10 Jun 2001, 19:40" "SDL" "SDL API Reference" +.TH "SDL_SetModState" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" SDL_SetModState\- Set the current key modifier state .SH "SYNOPSIS" @@ -32,4 +32,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_GetModState\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SetPalette.3 --- a/docs/man3/SDL_SetPalette.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SetPalette.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SetPalette" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_SetPalette" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_SetPalette\- Sets the colors in the palette of an 8-bit surface\&. .SH "SYNOPSIS" @@ -56,4 +56,4 @@ .SH "SEE ALSO" .PP \fISDL_SetColors\fR, \fISDL_SetVideoMode\fR, \fISDL_Surface\fR, \fISDL_Color\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SetTimer.3 --- a/docs/man3/SDL_SetTimer.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SetTimer.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SetTimer" "3" "Sun 10 Jun 2001, 19:41" "SDL" "SDL API Reference" +.TH "SDL_SetTimer" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_SetTimer\- Set a callback to run after the specified number of milliseconds has elapsed\&. .SH "SYNOPSIS" @@ -36,4 +36,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_AddTimer\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:41 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SetVideoMode.3 --- a/docs/man3/SDL_SetVideoMode.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SetVideoMode.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SetVideoMode" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_SetVideoMode" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_SetVideoMode\- Set up a video mode with the specified width, height and bits-per-pixel\&. .SH "SYNOPSIS" @@ -21,25 +21,25 @@ Create the video surface in video memory .TP 20 \fBSDL_ASYNCBLIT\fP -Enables the use of asynchronous to the display surface\&. This will usually slow down blitting on single CPU machines, but may provide a speed increase on SMP systems\&. +Enables the use of asynchronous updates of the display surface\&. This will usually slow down blitting on single CPU machines, but may provide a speed increase on SMP systems\&. .TP 20 \fBSDL_ANYFORMAT\fP -Normally, if a video surface of the requested depth (\fBbpp\fR) is not available, SDL will emulate one with a shadow surface\&. Passing \fBSDL_ANYFORMAT\fP prevents this and causes SDL to use the video surface, regardless of its depth\&. +Normally, if a video surface of the requested bits-per-pixel (\fBbpp\fR) is not available, SDL will emulate one with a shadow surface\&. Passing \fBSDL_ANYFORMAT\fP prevents this and causes SDL to use the video surface, regardless of its pixel depth\&. .TP 20 \fBSDL_HWPALETTE\fP -Give SDL exclusive palette access\&. Without this flag you may not always get the the colors you request with \fI\fBSDL_SetColors\fP\fR\&. +Give SDL exclusive palette access\&. Without this flag you may not always get the the colors you request with \fI\fBSDL_SetColors\fP\fR or \fI\fBSDL_SetPalette\fP\fR\&. .TP 20 \fBSDL_DOUBLEBUF\fP -Enable double buffering; only valid with SDL_HWSURFACE\&. Calling \fI\fBSDL_Flip\fP\fR will flip the buffers and update the screen\&. If double buffering could not be enabled then \fBSDL_Flip\fP will just perform a \fI\fBSDL_UpdateRect\fP\fR on the entire screen\&. +Enable hardware double buffering; only valid with SDL_HWSURFACE\&. Calling \fI\fBSDL_Flip\fP\fR will flip the buffers and update the screen\&. All drawing will take place on the surface that is not displayed at the moment\&. If double buffering could not be enabled then \fBSDL_Flip\fP will just perform a \fI\fBSDL_UpdateRect\fP\fR on the entire screen\&. .TP 20 \fBSDL_FULLSCREEN\fP -SDL will attempt to use a fullscreen mode +SDL will attempt to use a fullscreen mode\&. If a hardware resolution change is not possible (for whatever reason), the next higher resolution will be used and the display window centered on a black background\&. .TP 20 \fBSDL_OPENGL\fP Create an OpenGL rendering context\&. You should have previously set OpenGL video attributes with \fI\fBSDL_GL_SetAttribute\fP\fR\&. .TP 20 \fBSDL_OPENGLBLIT\fP -Create an OpenGL rendering context, like above, but allow normal blitting operations\&. +Create an OpenGL rendering context, like above, but allow normal blitting operations\&. The screen (2D) surface may have an alpha channel, and \fI\fBSDL_UpdateRects\fP\fR must be used for updating changes to the screen surface\&. .TP 20 \fBSDL_RESIZABLE\fP Create a resizable window\&. When the window is resized by the user a \fI\fBSDL_VIDEORESIZE\fP\fR event is generated and \fBSDL_SetVideoMode\fP can be called again with the new size\&. @@ -52,10 +52,16 @@ .PP Whatever \fBflags\fR \fBSDL_SetVideoMode\fP could satisfy are set in the \fBflags\fR member of the returned surface\&. .RE +.PP +.RS +\fBNote: +.PP +The \fBbpp\fR parameter is the number of bits per pixel, so a \fBbpp\fR of 24 uses the packed representation of 3 bytes/pixel\&. For the more common 4 bytes/pixel mode, use a \fBbpp\fR of 32\&. Somewhat oddly, both 15 and 16 will request a 2 bytes/pixel mode, but different pixel formats\&. +.RE .SH "RETURN VALUE" .PP -The framebuffer surface, or \fBNULL\fR if it fails\&. +The framebuffer surface, or \fBNULL\fR if it fails\&. The surface returned is freed by SDL_Quit() and should nt be freed by the caller\&. .SH "SEE ALSO" .PP \fI\fBSDL_LockSurface\fP\fR, \fI\fBSDL_SetColors\fP\fR, \fI\fBSDL_Flip\fP\fR, \fI\fBSDL_Surface\fR\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_ShowCursor.3 --- a/docs/man3/SDL_ShowCursor.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_ShowCursor.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_ShowCursor" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_ShowCursor" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_ShowCursor\- Toggle whether or not the cursor is shown on the screen\&. .SH "SYNOPSIS" @@ -17,4 +17,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_CreateCursor\fP\fR, \fI\fBSDL_SetCursor\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_Surface.3 --- a/docs/man3/SDL_Surface.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_Surface.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_Surface" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_Surface" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_Surface\- Graphical Surface Structure .SH "STRUCTURE DEFINITION" @@ -93,4 +93,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_PixelFormat\fR\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_SysWMEvent.3 --- a/docs/man3/SDL_SysWMEvent.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_SysWMEvent.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_SysWMEvent" "3" "Sun 10 Jun 2001, 19:40" "SDL" "SDL API Reference" +.TH "SDL_SysWMEvent" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" SDL_SysWMEvent\- Platform-dependent window manager event\&. .SH "DESCRIPTION" @@ -18,4 +18,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_EventState\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_ThreadID.3 --- a/docs/man3/SDL_ThreadID.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_ThreadID.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_ThreadID" "3" "Sun 10 Jun 2001, 19:41" "SDL" "SDL API Reference" +.TH "SDL_ThreadID" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" SDL_ThreadID\- Get the 32-bit thread identifier for the current thread\&. .SH "SYNOPSIS" @@ -10,4 +10,4 @@ .SH "DESCRIPTION" .PP Get the 32-bit thread identifier for the current thread\&. -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:41 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_UnlockAudio.3 --- a/docs/man3/SDL_UnlockAudio.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_UnlockAudio.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_UnlockAudio" "3" "Sun 10 Jun 2001, 19:40" "SDL" "SDL API Reference" +.TH "SDL_UnlockAudio" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" SDL_UnlockAudio\- Unlock the callback function .SH "SYNOPSIS" @@ -12,4 +12,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_OpenAudio\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_UnlockSurface.3 --- a/docs/man3/SDL_UnlockSurface.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_UnlockSurface.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_UnlockSurface" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_UnlockSurface" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_UnlockSurface\- Unlocks a previously locked surface\&. .SH "SYNOPSIS" @@ -14,4 +14,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_LockSurface\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_UnlockYUVOverlay.3 --- a/docs/man3/SDL_UnlockYUVOverlay.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_UnlockYUVOverlay.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_UnlockYUVOverlay" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_UnlockYUVOverlay" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_UnlockYUVOverlay\- Unlock an overlay .SH "SYNOPSIS" @@ -12,4 +12,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_UnlockYUVOverlay\fP\fR, \fI\fBSDL_CreateYUVOverlay\fP\fR, \fI\fBSDL_Overlay\fR\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_UpdateRect.3 --- a/docs/man3/SDL_UpdateRect.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_UpdateRect.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_UpdateRect" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_UpdateRect" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_UpdateRect\- Makes sure the given area is updated on the given screen\&. .SH "SYNOPSIS" @@ -16,4 +16,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_UpdateRects\fP\fR, \fI\fBSDL_Rect\fR\fR, \fI\fBSDL_Surface\fR\fR, \fI\fBSDL_LockSurface\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_UpdateRects.3 --- a/docs/man3/SDL_UpdateRects.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_UpdateRects.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_UpdateRects" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_UpdateRects" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_UpdateRects\- Makes sure the given list of rectangles is updated on the given screen\&. .SH "SYNOPSIS" @@ -22,4 +22,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_UpdateRect\fP\fR, \fI\fBSDL_Rect\fR\fR, \fI\fBSDL_Surface\fR\fR, \fI\fBSDL_LockSurface\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_UserEvent.3 --- a/docs/man3/SDL_UserEvent.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_UserEvent.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_UserEvent" "3" "Sun 10 Jun 2001, 19:40" "SDL" "SDL API Reference" +.TH "SDL_UserEvent" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" SDL_UserEvent\- A user-defined event type .SH "STRUCTURE DEFINITION" @@ -44,4 +44,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_PushEvent\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_VideoDriverName.3 --- a/docs/man3/SDL_VideoDriverName.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_VideoDriverName.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_VideoDriverName" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_VideoDriverName" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_VideoDriverName\- Obtain the name of the video driver .SH "SYNOPSIS" @@ -15,4 +15,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_Init\fP\fR \fI\fBSDL_InitSubSystem\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_VideoInfo.3 --- a/docs/man3/SDL_VideoInfo.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_VideoInfo.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_VideoInfo" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_VideoInfo" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_VideoInfo\- Video Target information .SH "STRUCTURE DEFINITION" @@ -59,4 +59,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_PixelFormat\fR\fR, \fI\fBSDL_GetVideoInfo\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_VideoModeOK.3 --- a/docs/man3/SDL_VideoModeOK.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_VideoModeOK.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_VideoModeOK" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_VideoModeOK" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_VideoModeOK\- Check to see if a particular video mode is supported\&. .SH "SYNOPSIS" @@ -41,4 +41,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_SetVideoMode\fP\fR, \fI\fBSDL_GetVideoInfo\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_WM_GetCaption.3 --- a/docs/man3/SDL_WM_GetCaption.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_WM_GetCaption.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_WM_GetCaption" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_WM_GetCaption" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_WM_GetCaption\- Gets the window title and icon name\&. .SH "SYNOPSIS" @@ -12,4 +12,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_WM_SetCaption\fP\fR, \fI\fBSDL_WM_SetIcon\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_WM_GrabInput.3 --- a/docs/man3/SDL_WM_GrabInput.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_WM_GrabInput.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_WM_GrabInput" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_WM_GrabInput" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_WM_GrabInput\- Grabs mouse and keyboard input\&. .SH "SYNOPSIS" @@ -25,4 +25,4 @@ .SH "RETURN VALUE" .PP The current/new \fBSDL_GrabMode\fR\&. -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_WM_IconifyWindow.3 --- a/docs/man3/SDL_WM_IconifyWindow.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_WM_IconifyWindow.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_WM_IconifyWindow" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_WM_IconifyWindow" "3" "Tue 11 Sep 2001, 23:02" "SDL" "SDL API Reference" .SH "NAME" SDL_WM_IconifyWindow\- Iconify/Minimise the window .SH "SYNOPSIS" @@ -12,4 +12,4 @@ .SH "RETURN VALUE" .PP Returns non-zero on success or \fB0\fR if iconification is not support or was refused by the window manager\&. -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:02 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_WM_SetCaption.3 --- a/docs/man3/SDL_WM_SetCaption.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_WM_SetCaption.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_WM_SetCaption" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_WM_SetCaption" "3" "Tue 11 Sep 2001, 23:02" "SDL" "SDL API Reference" .SH "NAME" SDL_WM_SetCaption\- Sets the window tile and icon name\&. .SH "SYNOPSIS" @@ -12,4 +12,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_WM_GetCaption\fP\fR, \fI\fBSDL_WM_SetIcon\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:02 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_WM_SetIcon.3 --- a/docs/man3/SDL_WM_SetIcon.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_WM_SetIcon.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_WM_SetIcon" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_WM_SetIcon" "3" "Tue 11 Sep 2001, 23:02" "SDL" "SDL API Reference" .SH "NAME" SDL_WM_SetIcon\- Sets the icon for the display window\&. .SH "SYNOPSIS" @@ -8,7 +8,7 @@ \fBvoid \fBSDL_WM_SetIcon\fP\fR(\fBSDL_Surface *icon, Uint8 *mask\fR); .SH "DESCRIPTION" .PP -Sets the icon for the display window\&. +Sets the icon for the display window\&. Win32 icons must be 32x32\&. .PP This function must be called before the first call to \fISDL_SetVideoMode\fR\&. .PP @@ -24,4 +24,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_SetVideoMode\fP\fR, \fI\fBSDL_WM_SetCaption\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:02 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_WM_ToggleFullScreen.3 --- a/docs/man3/SDL_WM_ToggleFullScreen.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_WM_ToggleFullScreen.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_WM_ToggleFullScreen" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_WM_ToggleFullScreen" "3" "Tue 11 Sep 2001, 23:02" "SDL" "SDL API Reference" .SH "NAME" SDL_WM_ToggleFullScreen\- Toggles fullscreen mode .SH "SYNOPSIS" @@ -12,4 +12,4 @@ .SH "RETURN VALUE" .PP Returns \fB0\fR on failure or \fB1\fR on success\&. -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:02 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_WaitEvent.3 --- a/docs/man3/SDL_WaitEvent.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_WaitEvent.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_WaitEvent" "3" "Sun 10 Jun 2001, 19:40" "SDL" "SDL API Reference" +.TH "SDL_WaitEvent" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" SDL_WaitEvent\- Waits indefinitely for the next available event\&. .SH "SYNOPSIS" @@ -14,4 +14,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_PollEvent\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_WaitThread.3 --- a/docs/man3/SDL_WaitThread.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_WaitThread.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_WaitThread" "3" "Sun 10 Jun 2001, 19:41" "SDL" "SDL API Reference" +.TH "SDL_WaitThread" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_WaitThread\- Wait for a thread to finish\&. .SH "SYNOPSIS" @@ -16,4 +16,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_CreateThread\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:41 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_WarpMouse.3 --- a/docs/man3/SDL_WarpMouse.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_WarpMouse.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_WarpMouse" "3" "Sun 10 Jun 2001, 19:42" "SDL" "SDL API Reference" +.TH "SDL_WarpMouse" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_WarpMouse\- Set the position of the mouse cursor\&. .SH "SYNOPSIS" @@ -12,4 +12,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_MouseMotionEvent\fR\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:42 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_WasInit.3 --- a/docs/man3/SDL_WasInit.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_WasInit.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_WasInit" "3" "Sun 10 Jun 2001, 19:41" "SDL" "SDL API Reference" +.TH "SDL_WasInit" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" SDL_WasInit\- Check which subsystems are initialized .SH "SYNOPSIS" @@ -60,4 +60,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_Init\fP\fR, \fI\fBSDL_Subsystem\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:41 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_keysym.3 --- a/docs/man3/SDL_keysym.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_keysym.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_keysym" "3" "Sun 10 Jun 2001, 19:40" "SDL" "SDL API Reference" +.TH "SDL_keysym" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" SDL_keysym\- Keysym structure .SH "STRUCTURE DEFINITION" @@ -66,4 +66,4 @@ .SH "SEE ALSO" .PP \fI\fBSDLKey\fR\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:40 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_mutexP.3 --- a/docs/man3/SDL_mutexP.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_mutexP.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_mutexP" "3" "Sun 10 Jun 2001, 19:41" "SDL" "SDL API Reference" +.TH "SDL_mutexP" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_mutexP\- Lock a mutex .SH "SYNOPSIS" @@ -15,4 +15,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_CreateMutex\fP\fR, \fI\fBSDL_mutexV\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:41 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff -r 578815880307 -r e5bc29de3f0a docs/man3/SDL_mutexV.3 --- a/docs/man3/SDL_mutexV.3 Thu Sep 13 16:41:03 2001 +0000 +++ b/docs/man3/SDL_mutexV.3 Fri Sep 14 02:41:09 2001 +0000 @@ -1,4 +1,4 @@ -.TH "SDL_mutexV" "3" "Sun 10 Jun 2001, 19:41" "SDL" "SDL API Reference" +.TH "SDL_mutexV" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" SDL_mutexV\- Unlock a mutex .SH "SYNOPSIS" @@ -15,4 +15,4 @@ .SH "SEE ALSO" .PP \fI\fBSDL_CreateMutex\fP\fR, \fI\fBSDL_mutexP\fP\fR -...\" created by instant / docbook-to-man, Sun 10 Jun 2001, 19:41 +...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01