Commit graph

1333 commits

Author SHA1 Message Date
Sam Lantinga
c705e88b5b *** empty log message ***
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401135
2005-08-25 20:31:58 +00:00
Sam Lantinga
76768380b6 Merged the Visual C++ 6 and 7 projects so all Visual C++ users unpack the same set of projects to get started.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401133
2005-08-24 21:57:48 +00:00
Sam Lantinga
74c4cad539 Updated version number
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401132
2005-08-24 05:49:57 +00:00
Sam Lantinga
098f961172 Updated the version number...
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401131
2005-08-23 15:22:03 +00:00
Sam Lantinga
ad320924b7 *** empty log message ***
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401130
2005-08-23 06:43:24 +00:00
Sam Lantinga
f408fa8196 Date: Mon, 22 Aug 2005 04:22:46 -0400
From: "Ryan C. Gordon"
Subject: [Fwd: SDL patch: make usage of rpath optional]

Here's a small patch against current SDL CVS that makes usage of rpath
optional, by passing --disable-rpath to configure.  This comes in handy
when redistributing SDL -- the rpath setting prevents the lib being
loaded if it's not in the rpath, which makes redistributing in packages
to be installed by non-root users pretty much useless.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401128
2005-08-23 06:36:23 +00:00
Ryan C. Gordon
3da700edc4 Fix for bug reported by Michael Benfield on the SDL mailing list:
"I'm on Mac OS 10.3.9 with a CVS SDL 1.2.9.

My understanding is that SDL_CDResume is supposed to resume play after
calling SDL_CDPlay. It doesn't on my system. It returns 0 but nothing happens.

Any ideas?

Thanks.

Mike Benfield"

--ryan.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401127
2005-08-22 14:38:31 +00:00
Ryan C. Gordon
a3e073d82b Apparently MacOS X will sometimes pass command line arguments to a Cocoa
app as an openFile() message, so we have to make sure we were launched from
 the Finder before accepting these as drag'n'drop documents, or they will just
 duplicate what's already in argc/argv.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401126
2005-08-22 14:18:15 +00:00
Sam Lantinga
447103bbe0 *** empty log message ***
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401125
2005-08-21 08:02:23 +00:00
Sam Lantinga
9608780d27 Date: Fri, 08 Jul 2005 22:43:48 +0200 (CEST)
From: Jiri Svoboda
Subject: [SDL] signal handling bug

I encountered the following bug:
SDL doesn't reset signal handlers for SIGTERM and SIGINT, after calling SDL_Quit these remain hooked to the handler in SDL_quit.c, being translated into SDL_QUIT events.

Consequently an application that issues a SDL_Quit and remains running will ignore any SIGTERM or SIGINT., and specifically CTRL-C presses.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401124
2005-08-21 06:18:54 +00:00
Ryan C. Gordon
3eacd1d2c1 From Patrice Mandin:
"Just a request about test subdirectory: the autotools files
(config.guess, config.sub, etc...) are a bit outdated, and I have to
update them for my cross-compilation party. So it would be nice to
have these updated.

...

Just removing these files works, because then configure will use
those of SDL's topdir. Could someone else check this, just to be sure?
i.e. remove config.guess, config.sub, install-sh and mkinstalldirs from
test subdir."


I tested on Linux and MacOSX...seems to be safe, so I'm nuking the files.

--ryan.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401123
2005-08-20 21:39:06 +00:00
Sam Lantinga
64eb7c00d7 Added support for Visual C++ 2005
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401122
2005-08-20 17:46:33 +00:00
Ryan C. Gordon
351fcc956e Patch by me to fix crash described below.
--ryan.



To: sdl@libsdl.org
From: Rainer Deyke <rainerd@eldwood.com>
Date: Tue, 16 Aug 2005 01:08:18 -0600
Subject: [SDL] Bug report: SDL_CreateRGBSurface with SDL_HWSURFACE crashes

If SDL is in full-screen mode with a hardware video surface on OS X,
SDL_CreateRGBSurface with SDL_HWSURFACE crashes.  The crash occurs on
line 109 of SDL_Surface.c.  This was tested on OS X 10.3.9 with both SDL
1.2.8 and the latest CVS.  Here is a small C++ program that demonstrates
the problem:

#include "SDL.h"
#include <stdio.h>

namespace {

   void wait_for_key()
   {
     SDL_Event e;
     printf("%d\n", SDL_GetAppState());
     while (SDL_WaitEvent(&e)) {
       if (e.type == SDL_KEYDOWN || e.type == SDL_QUIT) return;
     }
   }

}

int main(int, char *[])
{
   SDL_Init(SDL_INIT_VIDEO);
   SDL_Surface *screen
     = SDL_SetVideoMode(640, 480, 32, SDL_FULLSCREEN | SDL_HWSURFACE);
   SDL_Surface *s = SDL_CreateRGBSurface(SDL_HWSURFACE, 640, 480, 32,
       screen->format->Rmask, screen->format->Gmask,
       screen->format->Bmask, screen->format->Amask);
   wait_for_key();
   if (s) SDL_FreeSurface(s);
   SDL_Quit();
   printf("Success!\n");
   return 0;
}

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401121
2005-08-18 06:46:32 +00:00
Ryan C. Gordon
70bdab5cb5 SDL_GetAppState() correction when toggling fullscreen on OSX.
Patch by me to address this comment on the SDL mailing list:

"There appears to be a serious bug with SDL_GetAppState on OS X (10.3.9). When
first running in windowed mode and then switching to full screen mode by
calling SDL_SetVideoMode, SDL_GetAppState returns 4 (SDL_APPACTIVE) instead of
7 (SDL_APPMOUSEFOCUS | SDL_APPINPUTFOCUS | SDL_APPACTIVE).  However, the SDL
application clearly does have the keyboard focus, since it is able to receive
keyboard events."

--ryan.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401120
2005-08-18 06:18:30 +00:00
Ryan C. Gordon
4659196096 Date: Wed, 17 Aug 2005 11:23:40 -0400
From: Matt L <prometheus.uw@gmail.com>
To: "Ryan C. Gordon" <icculus@clutteredmind.org>
Subject: SDL Patch

Hio,

I saw your last call on the mailing list. Here's a patch which I
submitted about two weeks ago which hasn't made it in.

In the current sdl.m4, there's a bug where if your configure.ac, you
have AC_LANG(C++) specified, it won't properly compile and link the SDL
test program when you run the configure script. This is because only the
default CFLAGS is overriden in sdl.m4, and in the patch below, I've
fixed it so it overrides CXXFLAGS as well, allowing it to work with g++.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401119
2005-08-18 06:06:02 +00:00
Ryan C. Gordon
17254837b9 From: Jim Paris <jim_jtan_com>
To: sdl@libsdl.org
Date: Sat, 9 Jul 2005 13:59:33 -0400
Subject: [PATCH] fix locking in src/timer/SYS_timer.c

SDL_SetTimer has a typo in CVS.  This code was added since 1.2.8.  The
result is that the SDL_timer_mutex is locked twice and never unlocked,
breaking systems that use a threaded timer implementation.

-jim

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401118
2005-08-17 00:19:45 +00:00
Patrice Mandin
afa9f374aa Sleep a bit less in thread
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401117
2005-08-16 09:57:16 +00:00
Ryan C. Gordon
4926389885 Fixed mismerged patch.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401116
2005-08-11 05:08:28 +00:00
Ryan C. Gordon
62cf7a756e Patches to make SDL compatible with Win95 again.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401115
2005-08-11 01:02:01 +00:00
Ryan C. Gordon
d1c3cb7d61 In MacOSX, when drag'n'dropping a document on an SDL app, or double-clicking a
document associated with the app, the document(s) are passed to SDL_main()
 as if they were command line arguments. Otherwise, the command line is always
 empty and there is no way for the app to recover this information.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401114
2005-08-11 00:56:16 +00:00
Patrice Mandin
4410d5b4c7 Document recent audio updates
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401113
2005-08-10 14:30:53 +00:00
Patrice Mandin
df10913d3d Use MiNT thread to update DMA pointers instead of unusable MFP interrupt
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401112
2005-08-10 13:29:49 +00:00
Patrice Mandin
6d7043d388 Revert back to 1.6 revision
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401111
2005-08-09 07:28:35 +00:00
Patrice Mandin
e145a38bfa And do not forget the correct test
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401110
2005-08-08 08:17:35 +00:00
Patrice Mandin
1f4aca7607 Was checking wrong address for ACIA MIDI
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401109
2005-08-08 08:06:05 +00:00
Patrice Mandin
0a4aca5234 Can use both clocks of FDI interface on Falcon, plus digital output
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401108
2005-08-07 12:17:28 +00:00
Patrice Mandin
3bcb730b00 Disable XBIOS in interrupt also under Magic
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401107
2005-07-29 10:59:49 +00:00
Patrice Mandin
467a069a72 Disable Centscreen screensaver
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401106
2005-07-29 10:59:02 +00:00
Patrice Mandin
650743552c Tell user how many bytes are needed
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401105
2005-07-27 19:46:59 +00:00
Patrice Mandin
b298c8ca8f Tell SDL to notfree my video surfaces (Damn, no how-to write a SDL driver)
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401104
2005-07-27 19:18:10 +00:00
Patrice Mandin
d7493d7380 Revert back change between 1.29 and 1.30
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401103
2005-07-27 16:30:12 +00:00
Patrice Mandin
01e4794725 Revert back screen centering when using c2p
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401102
2005-07-21 22:21:51 +00:00
Patrice Mandin
a8056c8f3a Checking external clock on DSP port was leaving audio crossbar in limbo state
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401101
2005-07-21 21:33:15 +00:00
Sam Lantinga
82d3a5b357 Date: Fri, 15 Jul 2005 08:29:01 +0100
From: "alan buckley"
Subject: SDL Improved semiphore implementation for RISC OS (version 2)

I've attached a new version of the patch for the RISC OS
semaphore processing (in a zip file) that updates it to use
the improved semaphores support in UnixLiib.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401100
2005-07-21 06:19:18 +00:00
Patrice Mandin
94e3341891 Set MFP interrupt at end of frame
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401099
2005-07-20 17:47:18 +00:00
Patrice Mandin
ab3f230797 Move GSXB callback to C source
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401098
2005-07-20 17:44:11 +00:00
Patrice Mandin
d078268df8 Reserve space in system buffer to call XBIOS from interrupt
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401097
2005-07-20 17:40:58 +00:00
Patrice Mandin
329612713c XBIOS in interrupt not usable under MiNT
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401096
2005-07-20 17:39:10 +00:00
Patrice Mandin
6ebd3d9b2f Set hardware palette to black in True Colour mode
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401095
2005-07-18 13:42:57 +00:00
Patrice Mandin
196a420886 Save all registers on interrupt
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401094
2005-07-17 07:11:43 +00:00
Patrice Mandin
757bc45918 Forgot variable declaration
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401093
2005-07-07 22:51:59 +00:00
Patrice Mandin
04f98ae403 Correctly process top/bottom event messages
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401092
2005-07-07 15:29:38 +00:00
Patrice Mandin
134ad2d722 Send window to the bottom
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401091
2005-07-07 15:06:38 +00:00
Patrice Mandin
c18a7c8a82 Don't use both mouse events for the same task
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401090
2005-07-07 13:38:22 +00:00
Patrice Mandin
79cf651fd4 Don't generate multiple mouse focus events
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401089
2005-07-07 12:10:30 +00:00
Patrice Mandin
e8efe3264b Document IKBD hardware problem with mouse buttons and joystick fire buttons
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401088
2005-07-01 15:39:23 +00:00
Patrice Mandin
5b2a59fb84 Cleanup C2P routine
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401087
2005-06-30 12:03:19 +00:00
Patrice Mandin
dcfed1dcf2 4bits screen also has hardware palette
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401086
2005-06-30 12:02:25 +00:00
Patrice Mandin
d2b5ec924e Was not using firstcolor parameter
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401085
2005-06-30 08:20:53 +00:00
Patrice Mandin
7425c511cd Direct newbies to what to do
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401084
2005-06-29 20:38:56 +00:00