1. 14 Feb, 2004 2 commits
  2. 13 Feb, 2004 4 commits
    • Sam Lantinga's avatar
      Fixed typo in DirectFB driver (thanks Frank!) · 79e4af5a
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40819
      79e4af5a
    • Sam Lantinga's avatar
      *** empty log message *** · 79e96585
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40818
      79e96585
    • Sam Lantinga's avatar
      Date: Fri, 13 Feb 2004 17:03:16 +0100 · c5311cee
      Sam Lantinga authored
      From: Max Horn
      Subject: Modifier key fix
      
      The internal modifier state can get out of sync with reality. To
      trigger this, do for example this:
        1) Launch an SDL app
        2) Alt-click on the desktop (this will hide the SDL app).
        3) Bring the SDL app back to the front
        4) SDL will still think alt is pressed (and as such will treat left
      clicks like middle clicks). If you press and release alt, it'll be fine
      again.
      
      The attached patch cures this by rechecking the modifier state whenever
      we process an event.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40817
      c5311cee
    • Sam Lantinga's avatar
      *** empty log message *** · 70fe60bc
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40816
      70fe60bc
  3. 12 Feb, 2004 3 commits
  4. 11 Feb, 2004 5 commits
    • Sam Lantinga's avatar
      Don't use hardware overlay by default (seems much faster this way) · 20f0f299
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40812
      20f0f299
    • Sam Lantinga's avatar
      *** empty log message *** · 7158e313
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40811
      7158e313
    • Sam Lantinga's avatar
      Date: Tue, 13 Jan 2004 19:25:37 +0300 · 6858c59a
      Sam Lantinga authored
      From: Dmitry Yakimov
      Subject: [SDL] [PATCH] SDL bug patch
      
        Let me introduce 2 fixes to SDL.
      
        1. Preventing great slowdown on fast machines while hardware
           flipping (it's obviously bug).
        2. Setting up 85 Hz of monitor if supported. The reason is that
           Win98 by default sets lowest frequency 60 Hz.
           And we can't set up maximum frequency because some users can have
           wrong monitor drivers.
           This is important for shareware and commercial programs.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40810
      6858c59a
    • Sam Lantinga's avatar
      Simplify code and clean up Valgrind warning · 317cf8a3
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40809
      317cf8a3
    • Sam Lantinga's avatar
      Fixed static linking on MacOS X (thanks Max!) · cd10cd4c
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40808
      cd10cd4c
  5. 10 Feb, 2004 4 commits
    • Sam Lantinga's avatar
      Updated projects with cpuinfo API · f183cb88
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40807
      f183cb88
    • Sam Lantinga's avatar
      Date: Wed, 04 Feb 2004 13:51:56 +0100 · a423b0ba
      Sam Lantinga authored
      From: Jens Leuschner
      Subject: Small patch for libSDL
      
      In newer XFree86 releases in the German keyboard the "AltGr"-Key no
      longer produces the keysym "Mode_switch", instead it produces
      "ISO_Level3_Shift".
      I have created a small patch against SDL-1.2.6 (which cleanly applies to
      the current CVS-SDL too) that makes SDL recognize ISO_Level3_Shift as
      AltGR key.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40806
      a423b0ba
    • Sam Lantinga's avatar
      *** empty log message *** · f199a5d9
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40805
      f199a5d9
    • Sam Lantinga's avatar
      Updated SDL HTML documentation · fbce506d
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40804
      fbce506d
  6. 08 Feb, 2004 1 commit
  7. 07 Feb, 2004 1 commit
  8. 06 Feb, 2004 2 commits
  9. 31 Jan, 2004 3 commits
  10. 29 Jan, 2004 5 commits
  11. 28 Jan, 2004 2 commits
    • Sam Lantinga's avatar
      Date: Wed, 28 Jan 2004 20:25:54 +0100 · 07754d3f
      Sam Lantinga authored
      From: Thomas Jarosch
      Subject: Re: [SDL] DSPF_RBG15 in src/video/directfb/SDL_DirectFB_video.c
      
      In my local DirectFB 0.1.19 copy, DSPF_RGB15 is an alias for DSPF_ARGB1555.
      They seem to have it removed in DirectFB CVS.
      
      As DSPF_RGB15 was only an alias, the attached patch
      can safely be applied to SDL and won't brake older DirectFB versions.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40791
      07754d3f
    • Sam Lantinga's avatar
      Date: Wed, 28 Jan 2004 02:37:04 +0100 · 3949843e
      Sam Lantinga authored
      From: Max Horn
      Subject: Small libtool patch (framework related)
      
      here is a small patch for ltmain.sh. It corrects a problems with the
      libSDL.la file, which prevented applications using a version of libtool
      w/o framework support (read: all currently released libtool version) to
      not being able to link with SDL anymore. I also notified the libtool
      maintainers, as the same problem exists in libtool CVS.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40790
      3949843e
  12. 26 Jan, 2004 1 commit
  13. 24 Jan, 2004 3 commits
    • Sam Lantinga's avatar
      Date: Sat, 24 Jan 2004 14:49:58 +0100 · 3ea2a3dd
      Sam Lantinga authored
      From: Stephane Marchesin
      Subject: Re: [SDL] 3DNow! detection on a P4 system
      
      Well... I found another bug : 3dnow was detected on P2/P3 cpus. So I
      took one more look at the code and found a mistake in
      CPU_getCPUIDFeaturesExt :
      The condition for having extended cpuinfo is that when we query extended
      cpuinfo we get a result >=  0x80000001. So we must exit if eax < 0x80000001.
      The attached patch does that.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40788
      3ea2a3dd
    • Sam Lantinga's avatar
      *** empty log message *** · f423ef91
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40787
      f423ef91
    • Sam Lantinga's avatar
      Fixed bugs in CPU feature detection and added extended feature detection · faea9390
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40786
      faea9390
  14. 17 Jan, 2004 1 commit
  15. 13 Jan, 2004 1 commit
  16. 11 Jan, 2004 1 commit
  17. 08 Jan, 2004 1 commit