1. 06 Mar, 2004 1 commit
    • Sam Lantinga's avatar
      Date: Fri, 05 Mar 2004 16:08:01 +0000 · 561b81ad
      Sam Lantinga authored
      From: Alan Swanson
      Subject: Re: [SDL] Fatal signal when initiaize with USB joystick on 2.6.2 kern
      
      On Fri, 2004-03-05 at 15:09, Sam Lantinga wrote:
      > > Fred, how does the attached patch work for you? Do all your axes work?
      >
      > I think you meant the two lines to be reversed.
      > I checked a more robust version of this into CVS.  Fred, can you see if
      > it works?
      
      You've misread the code. :-/
      
      For coef[0] and coef[1], it is (values[2]+values[1]) / 2 and then add
      or subtract values[4] to the answer.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40873
      561b81ad
  2. 05 Mar, 2004 1 commit
  3. 04 Mar, 2004 2 commits
    • Sam Lantinga's avatar
      Date: Wed, 3 Mar 2004 12:44:21 +0200 · 70232856
      Sam Lantinga authored
      From: "Mike Gorchak"
      Subject: Misc fixes again
      
      I've added custom WM info for the QNX (same as generic for now), which allows to compile all applications, which included SDL_syswm.h directly, otherwise DISABLE_X11 appearing to be not defined and X11 info was used instead, which is wrong.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40871
      70232856
    • Sam Lantinga's avatar
      Instructive comments from Max Horn · 2209d19e
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40870
      2209d19e
  4. 03 Mar, 2004 1 commit
  5. 02 Mar, 2004 5 commits
    • Ryan C. Gordon's avatar
      Force recreation of X11 window if going to or from a SDL_NOFRAME vidmode. · b82c0bc1
      Ryan C. Gordon authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40868
      b82c0bc1
    • Sam Lantinga's avatar
      Date: Tue, 2 Mar 2004 11:34:54 +0100 · 7a82cd65
      Sam Lantinga authored
      From: Bartosz Fenski aka fEnIo
      Subject: outdated entry in INSTALL file
      
      I've just found in INSTALL file:
      
              If you are cross-compiling from Linux to Win32, you should read
              the file README.Win32
      
      But you don't shipped this file with SDL. I've found in CVS logs that
      this file has been deleted and this information is now in FAQ.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40867
      7a82cd65
    • Sam Lantinga's avatar
      Date: Sun, 29 Feb 2004 15:14:22 +0200 · 710da3b0
      Sam Lantinga authored
      From: Martin_Storsj
      Subject: Dynamic loading of ALSA
      
      I recently discovered that SDL can dynamically load ESD and aRts, and
      made a patch which adds this same functionality to ALSA.
      
      The update for configure.in isn't too good (it should e.g. look for
      libasound.so in other directories than /usr/lib), because I'm not too
      good at shellscripting and autoconf.
      
      The reason for using dlfcn.h and dlopen instead of SDL_LoadLibrary and
      SDL_LoadFunction is that libasound uses versioned symbols, and it is
      necessary to load the correct version using dlvsym. This isn't probably
      any real portability issue, because ALSA is linux-only.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40866
      710da3b0
    • Sam Lantinga's avatar
      Date: Sun, 29 Feb 2004 20:28:27 +0200 · a58dea0f
      Sam Lantinga authored
      From: Martin_Storsj
      Subject: Slight bug in ESD and aRts
      
      When I experimented with the ALSA-patch, I found a slight bug in the
      Load{ESD,ARTS}Library-functions. The check of whether a function pointer
      was correctly loaded looks like this right now:
      
      *esd_functions[i].func = SDL_LoadFunction(esd_handle,
      esd_functions[i].name);
      if ( ! esd_functions[i].func )
      
      Isn't that supposed to be ( ! *esd_functions[i].func )?
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40865
      a58dea0f
    • Sam Lantinga's avatar
      Date: Tue, 2 Mar 2004 08:52:20 +0200 · 64e0d725
      Sam Lantinga authored
      From: "Mike Gorchak"
      Subject: Just a misc. fixes
      
      1) I've added a small fix to the .qpg file - SDLqpg.diff. Added autoconf variables like the @SDL_BINARY_AGE@ instead of directly using "...so.7".
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40864
      64e0d725
  6. 26 Feb, 2004 6 commits
    • Sam Lantinga's avatar
      IRIX doesn't have a GL library versioning system · b8e0de8f
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40863
      b8e0de8f
    • Sam Lantinga's avatar
      Oops, ignore SIGALRM, not 0 · 2de7499a
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40862
      2de7499a
    • Ryan C. Gordon's avatar
      Create a 2D window and then manually focus a different window on your desktop, · a967e79e
      Ryan C. Gordon authored
      call SDL_PumpEvents() so the X11 driver sets its this->hidden->switch_waiting,
      then set a fullscreen OpenGL window (which makes the X11 driver tear down and
      create a new window instead of just resizing the existing one), poll for
      events, and the newly-created window will think it needs to pop back to a
      window. Fixed by resetting switch_waiting to zero if X11_CreateWindow() had
      to tear down a previous window.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40861
      a967e79e
    • Sam Lantinga's avatar
      This works on MacOS X too. :) · 90b89f26
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40860
      90b89f26
    • Sam Lantinga's avatar
      Date: Wed, 25 Feb 2004 06:41:17 -0500 · 005ace83
      Sam Lantinga authored
      From: "Ryan C. Gordon"
      Subject: Re: MacOS X bugs...
      
      This isn't an ideal patch (trying to open a joystick that has previously
      been unplugged will report success, but it'll just never give any input,
      etc), but it handles the worst case of deadlock in the event subsystem.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40859
      005ace83
    • Ryan C. Gordon's avatar
      Attempt to get FSAA compiling on all versions of MacOS X. · 46397620
      Ryan C. Gordon authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40858
      46397620
  7. 24 Feb, 2004 5 commits
    • Sam Lantinga's avatar
      Date: Mon, 23 Feb 2004 19:00:23 +0100 · ab5e55b0
      Sam Lantinga authored
      From: "Juergen \"George\" Sawinski"
      Subject: Problems compiling libsdl with gcc 3.3
      
      I attached another patch (configure.in.patch) that might resolv issues
      for some ppl finding the correct place of libartsc.so.*.
      (here, the output of "artsc-config --libs" contains two "-L.*",
      therefore the respecting arts_lib_spec contains the wrong path).
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40857
      ab5e55b0
    • Sam Lantinga's avatar
      I noticed MacOSX SDL sets up working directory to parent of executable. · 6c967b93
      Sam Lantinga authored
      On BeOS is should setup it the same way, but it only does when Tracker
      wasn't restarted.
      
      I checked code and it looks like a hack to me :(
      It looks for env variable and than comapres it to default when OpenTracker
      was started after boot, and wasn't restarted. That's probably ok, for that
      exact case. Unfortunetly that variable isn't always like that. For
      example, after Tracker crashes and is restarted, env variable most
      probably is different (depends on how Tracker was restarted, by what
      application, etc... for example: i have launcher application from which i
      can restart Tracker, and after that nev variable points to that
      application's directory, not Tracker's).
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40856
      6c967b93
    • Sam Lantinga's avatar
      *** empty log message *** · eeed686a
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40855
      eeed686a
    • Sam Lantinga's avatar
      Don't allow video modes larger than the maximum size · fa3a55a9
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40854
      fa3a55a9
    • Ryan C. Gordon's avatar
      Quartz fix: · fb965d4e
      Ryan C. Gordon authored
      ut2004 makes a 2D window for the splash screen, which sets the screen
      surface's pixels field. Then we tear down that video mode and create a GL
      context, and the Quartz target isn't resetting the pixels field to NULL.
      
      When you just create a GL window, the structure is memset'd to zero the
      first time through, so unless you hit ut2004's codepath, you won't see the
      bug.  :)
      
      Without this patch, quitting a windowed ut2003/ut2004 game makes the OS dump a
      warning about a bogus free() to stderr, but it doesn't actually crash. All we
      need to do is explicitly initialize the current->pixels field.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40853
      fb965d4e
  8. 23 Feb, 2004 4 commits
  9. 21 Feb, 2004 1 commit
  10. 20 Feb, 2004 1 commit
  11. 19 Feb, 2004 1 commit
  12. 18 Feb, 2004 1 commit
  13. 17 Feb, 2004 9 commits
  14. 16 Feb, 2004 2 commits