1. 06 Jan, 2006 5 commits
  2. 05 Jan, 2006 6 commits
  3. 04 Jan, 2006 5 commits
  4. 02 Jan, 2006 10 commits
    • Patrice Mandin's avatar
      Use a simple table for Unicode translation · 7fcbae51
      Patrice Mandin authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401224
      7fcbae51
    • Ryan C. Gordon's avatar
      Quartz driver: Make sure we pass a pointer to the right type. · aaf8ca0d
      Ryan C. Gordon authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401223
      aaf8ca0d
    • Ryan C. Gordon's avatar
      Quartz driver: Correctly handle SDL_DOUBLEBUF|SDL_FULLSCREEN when the · ca9a638c
      Ryan C. Gordon authored
       resolution is too small and thus emulated by SDL.
      
        Fixes http://www.devolution.com/pipermail/sdl/2005-December/071765.html ...
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401222
      ca9a638c
    • Ryan C. Gordon's avatar
      Quartz target: set x and y field of mode list to 0 in SDL_ListMode call. · 22cfa548
      Ryan C. Gordon authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401221
      22cfa548
    • Sam Lantinga's avatar
      Oops, actually use the timings in the modes db. :) · a4cb3b21
      Sam Lantinga authored
      FIXME: Add some way of specifying the refresh rate we want to select!
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401220
      a4cb3b21
    • Sam Lantinga's avatar
      *** empty log message *** · a61ae6f3
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401219
      a61ae6f3
    • Sam Lantinga's avatar
      Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch · a88b4dff
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401218
      a88b4dff
    • Ryan C. Gordon's avatar
      Toggle flip debugging in testsprite.c on the command line, not as a hardcoded · 1c8744d7
      Ryan C. Gordon authored
       #define.
      
      --ryan.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401217
      1c8744d7
    • Ryan C. Gordon's avatar
      Quartz target shouldn't crash if an event thread is used. · b4270503
      Ryan C. Gordon authored
       (SDL_INIT_EVENTTHREAD still doesn't work, but the crash is gone...)
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401216
      b4270503
    • Ryan C. Gordon's avatar
      To: sdl@libsdl.org · 53c1e9d0
      Ryan C. Gordon authored
      From: Christian Walther <cwalther@gmx.ch>
      Date: Thu, 15 Dec 2005 21:19:53 +0100
      Subject: [SDL] More mouse enhancements for Mac OS X
      
      The attached patch brings two more enhancements to mouse handling on Mac
      OS X (Quartz):
      
      1. Currently, after launching an SDL application, SDL's notion of the
      mouse position is stuck in the top left corner (0,0) until the first
      time the mouse is moved. That's because the UpdateMouse() function isn't
      implemented in the Quartz driver. This patch adds it.
      
      2. When grabbing input while the mouse cursor is hidden, the function
      CGAssociateMouseAndMouseCursorPosition(0) is called, which prevents the
      system's notion of the mouse location from moving (and therefore leaving
      the SDL window) even when the mouse is moved. However, apparently the
      Wacom tablet driver (and maybe other special pointing device drivers)
      doesn't care about that setting and still allows the mouse location to
      go outside of the window. Interestingly, the system cursor, which is
      made visible by the existing code in SDL in that case, does not follow
      the mouse location, but appears in the middle of the SDL window. The
      mouse location being outside of the window however means that mouse
      button events go to background applications (or the dock or whatever is
      there), which is very confusing to the user who sees no cursor outside
      of the SDL window.
      
      I have not found any way of intercepting these events (and that's
      probably by design, as "normal" applications shouldn't prevent the user
      from bringing other applications' windows to the front by clicking on
      them). An idea would be placing a fully transparent, screen-filling
      window in front of everything, but I fear that this might affect
      rendering performance (by doing unnecessary compositing, using up
      memory, or whatever).
      
      The deluxe solution to the problem would be talking to the tablet
      driver using AppleEvents to tell it to constrain its mapped area to the
      window (see Wacom's "TabletEventDemo" sample app,
      http://www.wacomeng.com/devsupport/mac/downloads.html), but I think that
      the bloat that solution would add to SDL would outweigh its usefulness.
      
      What I did instead in my patch is reassociating mouse and cursor when
      the mouse leaves the window while an invisible grab is in effect, and
      restoring the grab when the window is entered. That way, the grab can
      still be effectively broken by a tablet, but at least it's obvious to
      the user that it is broken. That change is minimal - it doesn't affect
      operation with a mouse (or a trackpad), and the code that it adds is not
      executed on every PumpEvents() call, only when entering and leaving the
      window.
      
      Unless there are any concerns about the patch, please apply. Feel free
      to shorten the lengthy comment in SDL_QuartzEvents.m if you think it's
      too verbose.
      
      Thanks
      
        -Christian
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401215
      53c1e9d0
  5. 01 Jan, 2006 3 commits
    • Ryan C. Gordon's avatar
      To: sdl@libsdl.org · a499115a
      Ryan C. Gordon authored
      From: Christian Walther <cwalther@gmx.ch>
      Date: Wed, 28 Dec 2005 12:13:20 +0100
      Subject: [SDL] Fix for opening documents on Mac OS X < 10.4
      
      The current code in SDLMain.m that transforms documents opened from the
      Finder into command-line arguments (introduced in revision 1.14,
      2005-08-11) uses the methods -[NSString lengthOfBytesUsingEncoding:] and
      -[NSString getCString:maxLength:encoding:], which are only available in
      Mac OS X 10.4.
      
      Compiling this code on 10.3 produces warnings, and running it (i.e.
      starting an SDL application by opening a document) leads to weird
      behavior which I didn't investigate in detail ("*** -[NSCFString
      lengthOfBytesUsingEncoding:]: selector not recognized" is printed to the
      console log, and the SDL window never opens).
      
      The attached patch removes the offending calls and uses -[NSString
      UTF8String] instead, which is available everywhere. Tested on 10.3.9,
      and I see no reason why it shouldn't also work on 10.2 and 10.4.
      
      Two further comments:
      
      * The comment above the -[SDLMain application: openFile:] implementation
      says "You need to have a CFBundleDocumentsType section in your
      Info.plist to get this message, apparently." This is not the case in my
      experience - it worked just fine with a hand-built bare-bones
      application consisting only of Test.app/Contents/MacOS/test, without any
      Info.plist (although you have to press the option and command keys for
      such an application to accept a dragged file).
      
      * I took the liberty of cleaning up another area of SDLMain.m: I changed
      "CustomApplicationMain (argc, argv)" to "CustomApplicationMain (int
      argc, char **argv)". This avoids the "type of `argv' defaults to `int'"
      warnings, and I'm not sure if leaving out the types could cause problems
      on platforms where an int and a char** aren't of the same size.
      
        -Christian
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401214
      a499115a
    • Ryan C. Gordon's avatar
      Bumped windib's priority above DirectX, since both DirectDraw and DirectInput · 4b19712d
      Ryan C. Gordon authored
       seem to be giving people issues on newer Windows and DX revisions. We'll see
       if this is just a temporary fix or not...  :/
      
      --ryan.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401213
      4b19712d
    • Patrice Mandin's avatar
      Added preliminary missingtranslation from Atari to Unicode charset · 8e86d242
      Patrice Mandin authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401212
      8e86d242
  6. 23 Dec, 2005 1 commit
    • Sam Lantinga's avatar
      From: "alan buckley" <alan_baa@hotmail.com> · 8d0272ce
      Sam Lantinga authored
      Subject: Patch for RISC OS cursor palette handling in SDL
      Date: Mon, 07 Nov 2005 09:14:15 -0800
      
      The mouse cursor palette was not correctly
      restored on RISC OS if the system was using
      anything but the default mouse colours.
      
      Additionally I've modifed the order the wait
      for vsync is called as it should be after the
      screen bank switching.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401211
      8d0272ce
  7. 21 Dec, 2005 1 commit
    • Ryan C. Gordon's avatar
      To: sdl@libsdl.org · b8d5b0fb
      Ryan C. Gordon authored
      From: Christian Walther <cwalther@gmx.ch>
      Date: Wed, 21 Dec 2005 13:39:39 +0100
      Subject: [SDL] Another mouse bug patch for Mac OS X
      
      Oh my, yet another change in the quartz mouse handling code! :)
      
      The attached patch fixes the following bug:
      
      Calling SDL_WarpMouse() while the cursor is invisible and grabbed should
      only update SDL's internal mouse location, not try to warp the system
      cursor (which is not at that location, but fixed in the middle of the
      window). Otherwise, the next mouse motion event is wrong.
      
      Please apply.
      
      Thanks
      
        Christian
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401210
      b8d5b0fb
  8. 19 Dec, 2005 1 commit
  9. 14 Dec, 2005 1 commit
  10. 13 Dec, 2005 1 commit
    • Sam Lantinga's avatar
      Date: Tue, 13 Dec 2005 13:33:50 +0000 · bdccb5d1
      Sam Lantinga authored
      From: "alan buckley"
      Subject: Patch to fix audio locking on RISC OS
      
      When threads were not disabled on a RISC OS build
      the audio mixer mutex was not created.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401207
      bdccb5d1
  11. 12 Dec, 2005 5 commits
    • Ryan C. Gordon's avatar
      Fixed configure script on latest Mac OS X developer tools (and hopefully · f57d6fbb
      Ryan C. Gordon authored
       didn't break it everywhere else...grumble...)
      
      --ryan.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401206
      f57d6fbb
    • Ryan C. Gordon's avatar
      Matched SDL_AllowRW and SDL_FreeRW calls in SDL_rwops.c ... · 54349c76
      Ryan C. Gordon authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401205
      54349c76
    • Ryan C. Gordon's avatar
      Date: Sat, 10 Dec 2005 18:29:41 +0100 · 53f29a2c
      Ryan C. Gordon authored
      From: Alberto Mardegan <mardy@users.sourceforge.net>
      To: sdl@libsdl.org
      Subject: [SDL] [PATCH] Touchscreen support to fbcon via tslib
      
      
      Hi all!
      
        I'm new to this list, I just subscribed. I've attached to this e-mail
      a patch I've written in order to add Touchscreen support to SDL's fbcon
      module via the tslib library.
      Since it introduces a new dependency, I've also edited the the
      configure.in file and added it as a compile-time option.
      
      This patch is especially useful for handhelds (I've tested it in my
      Zaurus).
      Please consider applying it. :-)
      
      
      --
      Saluti,
          Mardy
      http://interlingua.altervista.org
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401204
      53f29a2c
    • Ryan C. Gordon's avatar
      Date: Sun, 11 Dec 2005 20:37:04 +0100 · 529abd81
      Ryan C. Gordon authored
      From: Olivier Boudeville <olivier.boudeville@online.fr>
      To: "A list for developers using the SDL library. \(includes SDL-announce\)" <sdl@libsdl.org>
      Subject: [SDL] NetBSD build patch
      
      
      Hi everybody,
      
      apparently the SDL-1.2.9 source archive could not compile "as is" on
      NetBSD 2.0_STABLE due to a pthread detection issue in the configure script.
      
      I attached a small patch that can be applied to configure.in so that SDL
      can be directly (i.e. without the NetBSD package manager) configured and
      built successfully on NetBSD (at least on the one I tried !).
      
      Hope this helps,
      
      Olivier.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401203
      529abd81
    • Ryan C. Gordon's avatar
      From: Mike Frysinger <vapier@gentoo.org> · ec5be282
      Ryan C. Gordon authored
      To: sdl@libsdl.org
      Date: Sun, 11 Dec 2005 22:57:37 -0500
      Subject: [SDL] exec stack in libsdl update
      
      i posted back in September a patch to remove executable stacks:
      http://www.devolution.com/pipermail/sdl/2005-September/070626.html
      
      later in November, a similar patch was merged it seems:
      http://www.libsdl.org/cgi/cvsweb.cgi/SDL12/src/hermes/mmx_main.asm
      
      however, this lacks the additional output format checks that i posted in my
      patch ... this isnt a problem if the hermes asm code is only ever used to
      produce ELF objects, but if this is not true, then the additional checks in
      my original patch will need to be merged
      -mike
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401202
      ec5be282
  12. 08 Dec, 2005 1 commit
    • Sam Lantinga's avatar
      Fixed gcc 4 warnings · 8ce4fc3c
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401201
      8ce4fc3c