1. 16 Oct, 2008 1 commit
  2. 14 Oct, 2008 1 commit
  3. 12 Oct, 2008 4 commits
  4. 04 Oct, 2008 1 commit
  5. 17 Sep, 2008 2 commits
    • Ryan C. Gordon's avatar
      Add XInput support to Xcode project (untested!). · 338ff54f
      Ryan C. Gordon authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403221
      338ff54f
    • Ryan C. Gordon's avatar
      Some cleanups on the new XInput code. · c0f52b12
      Ryan C. Gordon authored
      One or two things got moved around, but largely this is hooked up correctly
       in the Unix configure system now: it can be dynamically loaded and fallback
       gracefully if not available, or libXi can be directly linked to libSDL.
      
      XInput support can be --disable'd from the configure script, too (defaults to
       enabled).
      
      Please note that while the framework is in place to gracefully fallback, the
       current state of the source requires XInput. We'll need to adjust a few
       things still to correct this.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403220
      c0f52b12
  6. 15 Sep, 2008 11 commits
    • Ryan C. Gordon's avatar
      Removed zap_ptr hack from Bugzilla #602...it was incorrect. · 0d38b678
      Ryan C. Gordon authored
      (The actual bug was in SDL code removed from the 1.3 codebase.)
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403219
      0d38b678
    • Sam Lantinga's avatar
      Almost got this compiling on Cygwin32, just needs DirectInput 7 · 7792866d
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403217
      7792866d
    • Sam Lantinga's avatar
      Updated Visual C++ build · 809f6ba3
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403216
      809f6ba3
    • Sam Lantinga's avatar
      more more! · 588cd827
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403215
      588cd827
    • Sam Lantinga's avatar
      Yet more math... · 547cc38d
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403214
      547cc38d
    • Sam Lantinga's avatar
      Whoops, missed a file... · 2188a0fa
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403213
      2188a0fa
    • Sam Lantinga's avatar
      Expanded the libm support and put it into a separate directory. · 9a334b7a
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403212
      9a334b7a
    • Sam Lantinga's avatar
      · 193af03f
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403211
      193af03f
    • Ryan C. Gordon's avatar
      Merged r4087:4088 from branches/SDL-1.2: missing semicolon. · f2d42b08
      Ryan C. Gordon authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403210
      f2d42b08
    • Sam Lantinga's avatar
      indent · a9ba7ee0
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403208
      a9ba7ee0
    • Sam Lantinga's avatar
      http://sources.redhat.com/ml/newlib/2002/msg00230.html · 5f94466c
      Sam Lantinga authored
      Stephen L Moshier wrote:
      >
      > pow(x,y) returns 0 when x is very close to -1.0 and y is very large.
      > The following test program prints
      >
      > pow(1.0000000000000002e+00 4.5035996273704970e+15) = 2.7182818284590455e+00
      > pow(-1.0000000000000002e+00 4.5035996273704970e+15) =0.0000000000000000e+00
      > pow(9.9999999999999978e-01 4.5035996273704970e+15) = 3.6787944117144222e-01
      > pow(-9.9999999999999978e-01 4.5035996273704970e+15) = 0.0000000000000000e+00
      >
      > which is incorrect for the negative arguments raised to an odd integer
      > power.
      >
      > -----
      > double pow (double, double);
      >
      > int
      > main ()
      > {
      >   double x, y, z;
      >
      >   x = 1.0 + pow (2.0, -52.0);
      >   y = 1.0 + pow (2.0, 52.0);
      >   z = pow (x, y);
      >   printf ("pow(%.16e %.16e) = %.16e\n", x, y, z);
      >   x = -x;
      >   z = pow (x, y);
      >   printf ("pow(%.16e %.16e) = %.16e\n", x, y, z);
      >   x = 1.0 - pow (2.0, -52.0);
      >   z = pow (x, y);
      >   printf ("pow(%.16e %.16e) = %.16e\n", x, y, z);
      >   x = -x;
      >   z = pow (x, y);
      >   printf ("pow(%.16e %.16e) = %.16e\n", x, y, z);
      > }
      > -----
      >
      > Here is a patch for newlib/libm/math/epow.c:
      
      Patch checked in and duplicated for ef_pow.c.  Thanks.
      
      -- Jeff J.
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403207
      5f94466c
  7. 08 Sep, 2008 1 commit
  8. 06 Sep, 2008 2 commits
  9. 04 Sep, 2008 1 commit
  10. 02 Sep, 2008 9 commits
  11. 01 Sep, 2008 1 commit
  12. 31 Aug, 2008 2 commits
    • Sam Lantinga's avatar
      Date: Sun, 31 Aug 2008 17:53:59 +0200 · 771abd36
      Sam Lantinga authored
      From: Couriersud
      Subject: Re: Updated DirectFB driver for SDL1.3
      
      attached is a patch which brings the directfb driver in line with
      current svn. In addition:
      
      * driver now is in line with the structure of the X11 driver.
        This adds a couple of files.
      * driver now supports relative mouse movements
      
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403190
      771abd36
    • Sam Lantinga's avatar
      indent · 9be698fb
      Sam Lantinga authored
      --HG--
      extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403189
      9be698fb
  13. 27 Aug, 2008 2 commits
  14. 26 Aug, 2008 2 commits