1. 01 Mar, 2008 1 commit
    • Bob Pendleton's avatar
      Deleted a call to X__PumpEvents at the end of X11_GL_InitExtensions(). This... · b8101a64
      Bob Pendleton authored
      Deleted a call to X__PumpEvents at the end of X11_GL_InitExtensions(). This function is being called from SDL_RecreateWindow at a point when the numwindows value in
      is incorrect. The result is that an illegal access is being made in X_PumpEvents when it tries to look up the windows ID of the source of an event. Taking out that
      call does not seem to have any effect on the testgl. But, I would be happy if someone else took a look at this problem and found a fix higher up the stack.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402737
      b8101a64
  2. 23 Feb, 2008 1 commit
  3. 20 Feb, 2008 1 commit
    • Bob Pendleton's avatar
      HandleEvent() returns done each time it is called. If done was set to 0 the... · ba6d728f
      Bob Pendleton authored
      HandleEvent() returns done each time it is called. If done was set to 0 the program should quit, but because done is not checked until *all* events are handled a
      following event can reset done to 1 and prevent the program from terminating when told to. I fixed the while loop that handles events to check for the state of done
      after handling each event. That could leave some events unhandled when the program exits, but it ensures that the program will exit.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402730
      ba6d728f
  4. 11 Feb, 2008 2 commits
  5. 10 Feb, 2008 4 commits
  6. 09 Feb, 2008 3 commits
  7. 08 Feb, 2008 1 commit
  8. 07 Feb, 2008 3 commits
  9. 05 Feb, 2008 2 commits
    • Sam Lantinga's avatar
      Christian's comment: · 671a7085
      Sam Lantinga authored
      /* Actually returns a UInt32 containing two character codes (and two 'reserved' bytes), but we're only interested in the second (or only) one */
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402716
      671a7085
    • Sam Lantinga's avatar
      First pass implementation of new SDL scancode concept, as discussed with · 02f2e328
      Sam Lantinga authored
      Christian Walther.  Currently only implemented on Mac OS X for sanity
      checking purposes.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402715
      02f2e328
  10. 04 Feb, 2008 1 commit
  11. 24 Jan, 2008 1 commit
  12. 15 Jan, 2008 1 commit
  13. 12 Jan, 2008 3 commits
  14. 09 Jan, 2008 1 commit
  15. 08 Jan, 2008 1 commit
  16. 03 Jan, 2008 1 commit
    • Sam Lantinga's avatar
      Updated config scripts · 6f2082d5
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402702
      6f2082d5
  17. 01 Jan, 2008 1 commit
  18. 30 Dec, 2007 1 commit
  19. 29 Dec, 2007 9 commits
  20. 28 Dec, 2007 2 commits
    • Sam Lantinga's avatar
      Fixed fatbuild.sh script for building on Mac OS X 10.5 · 19682ed1
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402657
      19682ed1
    • Sam Lantinga's avatar
      Date: Wed, 14 Nov 2007 22:20:27 -0500 · 5678f51d
      Sam Lantinga authored
      From: Calvin Vette
      Subject: Fix to compile SDL-1.2 SVN on OS X Leopard
      
      I found I needed to add a conditional check for Leopard to compile
      cleanly on 1.2-SVN (20071114):
      
      #include <AudioUnit/AudioUnit.h>
      #ifdef AVAILABLE_MAC_OS_X_VERSION_10_5_AND_LATER
      #include <AudioUnit/AUNTComponent.h>
      #endif
      
      where there is now just:
      #include <AudioUnit/AudioUnit.h>
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402655
      5678f51d