1. 23 Feb, 2007 1 commit
  2. 20 Feb, 2007 2 commits
  3. 16 Feb, 2007 2 commits
  4. 15 Feb, 2007 2 commits
  5. 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
  6. 13 Feb, 2007 2 commits
  7. 12 Feb, 2007 2 commits
  8. 05 Feb, 2007 1 commit
  9. 03 Feb, 2007 2 commits
  10. 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
  11. 14 Jan, 2007 1 commit
  12. 11 Jan, 2007 1 commit
  13. 04 Jan, 2007 1 commit
  14. 11 Dec, 2006 1 commit
  15. 01 Dec, 2006 1 commit
  16. 29 Nov, 2006 1 commit
  17. 21 Nov, 2006 2 commits
    • 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
    • Ryan C. Gordon's avatar
      Added sdl.pc to svn:ignore. · 8ab5a93d
      Ryan C. Gordon authored
      --HG--
      branch : SDL-1.2
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%402235
      8ab5a93d
  18. 19 Nov, 2006 1 commit
  19. 13 Nov, 2006 1 commit
    • Ryan C. Gordon's avatar
      X11 backend: tell app that mouse focus has been obtained when grabbing the · 8061a35d
      Ryan C. Gordon authored
       input. This allows us to enable DGA mode, even when the system cursor was
       outside of the window when the grab was initiated.
      
      Fixes Bugzilla #299, which has a more detailed explanation of the issue.
      
      --HG--
      branch : SDL-1.2
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%402231
      8061a35d
  20. 12 Nov, 2006 1 commit
  21. 07 Nov, 2006 4 commits
  22. 03 Nov, 2006 1 commit
  23. 29 Oct, 2006 5 commits
  24. 27 Oct, 2006 1 commit
  25. 21 Oct, 2006 1 commit