Commit Graph

1008 Commits

Author SHA1 Message Date
Patrice Mandin
2b06776e96 Document new OpenGL feature 2004-12-06 15:01:00 +00:00
Sam Lantinga
84ec8e2a0c Updated SDL for MacOS X Xcode support 2004-12-06 04:17:56 +00:00
Patrice Mandin
f621dc8986 Some Atari OpenGL implementations draw upside down 2004-12-04 20:53:58 +00:00
Patrice Mandin
2085c82819 Be sure to compile without OpenGL enabled 2004-12-04 10:31:16 +00:00
Patrice Mandin
10a29a52df Wrong RGB24 to RGB16 conversion 2004-12-02 23:00:28 +00:00
Patrice Mandin
343d5baa61 Wrong pixel size for source buffer for old drivers 2004-12-02 13:45:29 +00:00
Sam Lantinga
51464b8cdc *** empty log message *** 2004-11-30 19:02:42 +00:00
Patrice Mandin
d5ea69d476 TinyGL only support RGB24 color buffer 2004-11-30 16:14:05 +00:00
Sam Lantinga
61269ac1be Added a usage example for SDL_GetWMInfo() 2004-11-30 15:21:29 +00:00
Sam Lantinga
89d9ce8288 Date: Wed, 24 Nov 2004 01:25:48 +0100
From: Stephane Marchesin
Subject: Re: [SDL] Problem compiling SDL 1.2.7

- there is a bug that was introduced in the kernel headers for 2.6.9
which is fixed in 2.6.10. This bug *will* byte when compiling the cdrom
subsystem. A patch that works around this bug is attached. Note that
users affected are not those running 2.6.9, but those using the 2.6.9
kernel headers for their system (i.e. whose libc is built against 2.6.9
headers).
2004-11-30 14:45:08 +00:00
Sam Lantinga
bfb8e9a82f Date: Sat, 27 Nov 2004 13:35:43 +0100
From: "Martin Bickel"
Subject: [SDL] Patch: fixing uninitilized palette

while running Valgrind over my application I found the following
problem in SDL:

The function MapNto1 allocates  SDL_Color colors[256]  but does not
initialize it.
SDL_DitherColors is then called which initialized the r, g and b
component, but not the 'unused' component of each color.
When Map1to1 is called from MapNto1, it runs a memcmp on the colors,
which also evaluates the unused component and therefor returns
differences much more often than necessary.

So the 'unused' component of SDL_Color should be initialized. This
patch does this by calling memset for the whole array in MapNto1 .
2004-11-30 14:28:20 +00:00
Patrice Mandin
55470fe95e Forgot to change window title in the normal case 2004-11-30 13:04:22 +00:00
Patrice Mandin
8cad871c73 TinyGL does not have glFinish, only glFlush 2004-11-28 21:52:29 +00:00
Patrice Mandin
ae203664c1 Wrong size of parameters for SDL_Swap32 m68k assembly routine 2004-11-27 23:11:20 +00:00
Patrice Mandin
5e19f578b5 Forgot to flush OpenGL buffer using glFinish 2004-11-27 21:28:49 +00:00
Patrice Mandin
d6eea46733 Keep current OpenGL context when possible 2004-11-26 22:11:30 +00:00
Patrice Mandin
9f98662ee6 Final touches to OSMesa OpenGL support on Atari, using loadable libraries. Hope SDL 1.2.8 is out soon. 2004-11-26 16:16:50 +00:00
Patrice Mandin
8caa9e226d Restore everything when a function pointer is NULL 2004-11-26 16:13:24 +00:00
Patrice Mandin
c105d6512b Factorize OSMesa OpenGL code for Atari drivers 2004-11-25 15:47:49 +00:00
Patrice Mandin
2804f1f391 Remove ambiguous/useless code 2004-11-22 20:37:41 +00:00
Patrice Mandin
c35b1858d8 Do not use registers when not necessary 2004-11-22 20:36:59 +00:00
Patrice Mandin
1f07ed4880 Add conversion routines for unsupported screen formats 2004-11-22 10:18:04 +00:00
Patrice Mandin
05034eabf2 Add m68k assembly routines for endianness conversion 2004-11-22 10:16:58 +00:00
Patrice Mandin
1563d1e7b0 Add OSMesa OpenGL support to the Atari GEM video driver 2004-11-21 21:59:47 +00:00
Sam Lantinga
e3f220121f Date: Fri, 19 Nov 2004 06:23:53 -0800 (PST)
From: Eric Wing
Subject: OS X Mouse inversion problem fix (again)

Here's yet another patch for the OS X mouse inversion
problem. This should fix the problem once and for all.
I know I've said this before, but *This time for
sure!* :)

If you recall, my last patch broke the non-OpenGL
windowed code and caused the inversion to occur there
instead. Max submitted a patch that partially reverted
the changes back which included the os version hack
which is currently the most recent CVS.

Aaron Sullivan identified and reported to the mailing
list the other day, that the last partial regression
of the code broke OS X 10.2. Looking over the results,
I'm thinking that I was slightly more successful than
I thought at unifying the code. I think I was trying
to unify the code base for OpenGL and non-OpenGL
windowed modes for all versions of the OS. It looks
like I failed at at unifying the OpenGL and non-OpenGL
code, but I did succeed at unifying the OS versions.

Thus, we no longer need the hack for the OS version
checks. The partial regression still included an OS
check which is what broke things for < 10.3.

Attached is the patch for SDL_QuartzWM.m. It basically
is a half-line change that removes one of the two
checks that decides if the mouse coordinates need to
be inverted, i.e:

if (system_version >= 0x1030 &&
(SDL_VideoSurface->flags & SDL_OPENGL) )
becomes this:
if(SDL_VideoSurface->flags & SDL_OPENGL)

With Aaron's outstanding help, we have collectively
tested:

windowed OpenGL
windowed non-OpenGL
fullscreen OpenGL
fullscreen non-OpenGL

under OS X 10.2 (Jaguar), 10.3 (Panther), and 10.4
(Tiger).

We don't have access to 10.0 or 10.1, but since the
original problem didn't materialize until 10.3, I'm
hopeful that testing 10.2 is sufficient. And now that
the code is uniform, I'm also hoping we'll be safe
moving forward to deal with future revisions of the OS
with this issue.
2004-11-21 00:57:47 +00:00
Patrice Mandin
c06c18e45f Add missing --add-missing 2004-11-20 20:57:28 +00:00
Patrice Mandin
032ec82e08 sdl-config already provides needed libs for MiNT build 2004-11-20 20:56:23 +00:00
Patrice Mandin
e860599e99 OSMesa draws upside down 2004-11-20 20:47:52 +00:00
Patrice Mandin
6135262365 Grr, have to resort video modes one more time 2004-11-17 23:23:03 +00:00
Patrice Mandin
67968b56f4 Add support for OpenGL on Atari using OSMesa, the offscreen rendering driver from Mesa 2004-11-17 23:13:15 +00:00
Sam Lantinga
79bf0dcc6b Updated for Visual C++ 6 build 2004-11-15 23:34:56 +00:00
Sam Lantinga
a84d06317d Updated for Visual C++ 6 build 2004-11-15 23:30:07 +00:00
Sam Lantinga
e4401d9abe *** empty log message *** 2004-11-15 21:11:44 +00:00
Sam Lantinga
6c040c4455 Restore the user specified window proc after shutdown 2004-11-15 21:09:54 +00:00
Sam Lantinga
c8eb4923ea Fedora Core 3 has libasound.so in /lib 2004-11-15 01:47:53 +00:00
Patrice Mandin
7db159f1e4 Sort video modes by width then height 2004-11-13 09:57:20 +00:00
Sam Lantinga
694ba8142b Date: Mon, 25 Oct 2004 17:30:06 +0200
From: Gautier Portet
Subject: [SDL] Re: Centering a window

Hi, here is a patch fixing the win32 centered window bug
2004-11-12 23:22:08 +00:00
Sam Lantinga
14802a0dcc Date: Tue, 19 Oct 2004 23:04:58 -0700
From: "Trevor Scroggins"
Subject: [SDL] [PATCH] DirectX and SDL_WINDOWID Hack

Hello, all. The IDirectInputDevice2_SetCooperativeLevel call in
SDL_dx5events.c expects to be passed a root-level HWND. More often than not,
a child window is used with the SDL_WINDOWID hack, causing the
IDirectInputDevice2_SetCooperativeLevel call to fail.

This is a small patch to SDL_dx5events.c v1.21 that fixes the problem by
retrieving a handle to the root-level ancestor of the current SDL_Window and
passing that handle to IDirectInputDevice2_SetCooperativeLevel.
2004-11-12 23:14:47 +00:00
Sam Lantinga
3e6504ddd3 Date: Wed, 13 Oct 2004 17:00:58 -0500
From: Jonathan Atkins
Subject: [Fwd: Re: SDL_image on Solaris x86 help please]

apparently __i386__ is insufficient for Suns C Workshop compilers...
so a sun x86 user told me about this...and tested his own solution.
I think it wouldn't be a bad idea to add __i386 to the SDL_byteorder.h
so that it works for that compiler.
2004-11-12 22:09:17 +00:00
Sam Lantinga
2018ef5731 Date: Mon, 11 Oct 2004 15:17:27 +0300 (EEST)
From: Hannu Savolainen
Subject: Re: SDL uses obsolete OSS features

I did some work on getting OSS to work better with SDL. There have been
some problems with select which should be fixed now.

I'm having some problems in understanding what is the purpose of the
DSP_WaitAudio() routine. I added a return to the very beginning of this
routine and commendted out the define for USE_BLOCKING_WRITES. At least
lbreakout2 seems to work as well as earlier. The latencies are the same.

An ordinary blocking write does exactly the same thing than DSP_WaitAudio
does. So I would recommend using the USE_BLOCKING_WRITES approach and
removing everything from the DSP_WaitAudio routine. Also enabling
USE_BLOCKING_WRITES makes it possible to simplify DSP_PlayAudio() because
you don't need to handle the partial writes (the do-while loop).

Attached is a patch against SDL-1.2.7. After these changes SDL will use
OSS as it's designed to be used (make it as simple as possible). This code
should work with all OSS implementations because it uses only the very
fundamental features that have been there since the jurassic times.
2004-11-12 21:39:04 +00:00
Sam Lantinga
9dedfb3055 Date: Tue, 5 Oct 2004 11:04:02 -0400
From: Bob Ippolito
Subject: [SDL] PATCH: Fix for release count bug in SDL_QuartzWM

SDL_QuartzWM incorrectly does [window close]; [window release];

The semantics for -[NSWindow close] are as follows:

Removes the receiver from the screen. If the receiver is set to be
released when closed, a release message is sent to the object after the
current event is completed. For an NSWindow object, the default is to
be released on closing, while for an NSPanel object, the default is not
to be released. You can use the setReleasedWhenClosed: method to change
the default behavior.

This patch simply removes the incorrect release.
2004-11-12 21:29:52 +00:00
Sam Lantinga
41e1ddf053 Video modes are sorted width first, then height 2004-11-12 21:25:42 +00:00
Sam Lantinga
e360be74cf Fix from Alfred Perlstein 2004-11-12 21:24:46 +00:00
Patrice Mandin
7f6b90a196 Prevent redraws till internal buffers are correctly setup 2004-11-06 08:56:23 +00:00
Patrice Mandin
49227ea7bc No need to try to emulate analog axis when SDL support digital hats 2004-10-31 13:15:33 +00:00
Patrice Mandin
9fadd916f0 Forgot to disable debug messages 2004-10-29 11:19:03 +00:00
Patrice Mandin
f2f8e3477c Date: Fri, 29 Oct 2004 11:47:09 +0200
From: Patrice Mandin
Subject: Reworked audio drivers for Atari platform

These are reworked audio drivers for the Atari platform.

Previous drivers were missing some features:
- Test external clock plugged to DSP port on Atari Falcon 030.
- Ability to select internal or external clock.

So now, I generate a list of frequencies available, with the master clock
and predivisor to use. One big caveat to this: I do not have an external
clock, so I hope it works.
2004-10-29 09:56:53 +00:00
Sam Lantinga
2f5b8b6c5b Date: Sat, 9 Oct 2004 02:46:18 +0300 (EEST)
From: Hannu Savolainen
Subject: SDL uses obsolete OSS features

I was trying to compile SDL against the latest OSS version. It appeared
that SDL 1.2.7 is using a very old SOUND_PCM_WRITE_RATE ioctl that is
obsolete and has been removed from OSS. The right ioctl to call is
SNDCTL_DSP_SPEED. Attached is a patch (works with all OSS versions).
2004-10-09 22:11:45 +00:00
Patrice Mandin
66b8444e31 No need to close the window when going to fullscreen mode 2004-10-08 09:08:32 +00:00
Sam Lantinga
a760b49b57 *** empty log message *** 2004-09-17 13:47:44 +00:00