1. 17 Apr, 2007 2 commits
  2. 06 Apr, 2007 1 commit
  3. 04 Apr, 2007 6 commits
  4. 01 Apr, 2007 1 commit
    • Ryan C. Gordon's avatar
      Date: Sat, 31 Mar 2007 16:39:52 +0200 · 749c11c0
      Ryan C. Gordon authored
      From: Bert Wesarg
      To: sdl@lists.libsdl.org
      Subject: [SDL] [PATCH] sdl-config.in needs ${libdir}
      
      Hello,
      
      after the patch for Bug #321, sdl-config.in needs the libdir variable. and
       there is a hardcoded 'lib' in SDL.spec.in too.
      
      Bert Wesarg
      
      --HG--
      branch : SDL-1.2
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%402293
      749c11c0
  5. 30 Mar, 2007 2 commits
  6. 28 Mar, 2007 1 commit
  7. 27 Mar, 2007 1 commit
    • Ryan C. Gordon's avatar
      From: Laurence Passmore · db2fe20a
      Ryan C. Gordon authored
      Date: Mon, 26 Mar 2007 23:22:45 +0100
      To: "A list for developers using the SDL library. \(includes SDL-announce\)" <sdl@lists.libsdl.org>
      Subject: [SDL] SDL_config_macosx.h: MAC_OS_X_VERSION_MIN_REQUIRED
      
      Hi,
      
      I just compiled my SDL application on Mac OS X with -Wundef and it
      threw a number of errors. Of note was:
      
           SDL_config_macosx.h: 34
           warning: "MAC_OS_X_VERSION_MIN_REQUIRED" is not defined
      
      Line 34 is:
      
           #if ( (MAC_OS_X_VERSION_MIN_REQUIRED >= 1030) || (!defined (__POWERPC__)) )
      
      Now according to this mailing on the Apple developer lists:
      
           http://lists.apple.com/archives/Xcode-users/2005/May/msg00602.html
      
      that particular #define was removed from the gcc compiler defaults
      and AvailabilityMacros.h (/usr/include/AvailabilityMacros.h) should
      be pulled in directly instead.
      
      Would someone closer to the Mac OS X version of SDL be willing to
      make that change please? Thanks.
      
      Laurence Passmore
      Homeworld SDL @ www.homeworldsdl.org
      
      --HG--
      branch : SDL-1.2
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%402286
      db2fe20a
  8. 18 Mar, 2007 1 commit
  9. 14 Mar, 2007 1 commit
  10. 23 Feb, 2007 1 commit
  11. 20 Feb, 2007 2 commits
  12. 16 Feb, 2007 2 commits
  13. 15 Feb, 2007 2 commits
  14. 14 Feb, 2007 2 commits
    • Ryan C. Gordon's avatar
      Removed the contents of the BUGS file, as most (all?) of the issues were · 0855a63e
      Ryan C. Gordon authored
       either long-since fixed or something that will never get fixed.
      
      The file now points people to Bugzilla and the mailing list.
      
         Fixes Bugzilla #352.
      
      --HG--
      branch : SDL-1.2
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%402269
      0855a63e
    • Ryan C. Gordon's avatar
      Quartz code should use F13, F14, and F15 keys instead of PrintScreen, · b360c133
      Ryan C. Gordon authored
       ScrollLock, and Pause, since that's what's on the standard Apple keyboards
       (minus the laptops, which have neither set). Ideally we'll find a better way
       to distinguish this...the keys being replaced would be correct on a USB
       keyboard for Windows. Sigh.
      
         Fixes Bugzilla #301.
      
      --HG--
      branch : SDL-1.2
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%402267
      b360c133
  15. 13 Feb, 2007 2 commits
  16. 12 Feb, 2007 2 commits
  17. 05 Feb, 2007 1 commit
  18. 03 Feb, 2007 2 commits
  19. 23 Jan, 2007 1 commit
    • Sam Lantinga's avatar
      Updated svn repository · ac32d0c5
      Sam Lantinga authored
      --HG--
      branch : SDL-1.2
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%402252
      ac32d0c5
  20. 14 Jan, 2007 1 commit
  21. 11 Jan, 2007 1 commit
  22. 04 Jan, 2007 1 commit
  23. 11 Dec, 2006 1 commit
  24. 01 Dec, 2006 1 commit
  25. 29 Nov, 2006 1 commit
  26. 21 Nov, 2006 1 commit
    • Ryan C. Gordon's avatar
      From: Gabriel Gambetta · 7a800234
      Ryan C. Gordon authored
      To: SDL Mailing List <sdl@libsdl.org>
      Date: Fri, 17 Nov 2006 00:39:29 -0200
      Subject: [SDL] Alpha blending bug - fixed?
      
      It turns out mm5 never got the correct value. This failed :
      
      	[...]
      	"movd %1, %%mm5\n\t"
      	: : "m" (amask), "m" (sf->Ashift) );
      
      
      mm5 got 0xFF000018 instead of 0x00000018. However I did this :
      
      	Uint32 ashift = sf->Ashift;
      	[...]
      	"movd %1, %%mm5\n\t"
      	: : "m" (amask), "m" (ashift) );
      
      and everything worked fine.
      
      The only thing I could find out was that ashift is 32-bit aligned but
      sf->Ashift isn't:
      
      printf("ashift     %8X [%d]\n", &ashift, (int)(&ashift) % 4);
      printf("sf->Ashift %8X [%d]\n", &sf->Ashift, (int)(&sf->Ashift) % 4);
      
      ashift     at BFF0E0C4 [0]
      sf->Ashift at 08AFB9CD [1]
      
      Could this be the problem? If it is, the fix is extremely trivial.
      Should I submit a patch?
      
      	--Gabriel
      
      --HG--
      branch : SDL-1.2
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%402236
      7a800234