Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 3, 2011, 5:07:42 AM (13 years ago)
Author:
rgrieder
Message:

Updated Bullet from v2.77 to v2.78.
(I'm not going to make a branch for that since the update from 2.74 to 2.77 hasn't been tested that much either).

You will HAVE to do a complete RECOMPILE! I tested with MSVC and MinGW and they both threw linker errors at me.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/external/bullet/LinearMath/btScalar.h

    r8351 r8393  
    1515
    1616
    17 #ifndef SIMD___SCALAR_H
    18 #define SIMD___SCALAR_H
     17#ifndef BT_SCALAR_H
     18#define BT_SCALAR_H
    1919
    2020#ifdef BT_MANAGED_CODE
     
    2626#include <math.h>
    2727#include <stdlib.h>//size_t for MSVC 6.0
    28 #include <cstdlib>
    29 #include <cfloat>
    3028#include <float.h>
    3129
    3230/* SVN $Revision$ on $Date$ from http://bullet.googlecode.com*/
    33 #define BT_BULLET_VERSION 277
     31#define BT_BULLET_VERSION 278
    3432
    3533inline int      btGetVersion()
     
    287285SIMD_FORCE_INLINE btScalar btExp(btScalar x) { return expf(x); }
    288286SIMD_FORCE_INLINE btScalar btLog(btScalar x) { return logf(x); }
    289   #if defined( __MINGW32__ )
    290   SIMD_FORCE_INLINE btScalar btPow(btScalar x,btScalar y) { return pow(x,y); }
    291   #else
    292   SIMD_FORCE_INLINE btScalar btPow(btScalar x,btScalar y) { return powf(x,y); }
    293   #endif
     287SIMD_FORCE_INLINE btScalar btPow(btScalar x,btScalar y) { return powf(x,y); }
    294288SIMD_FORCE_INLINE btScalar btFmod(btScalar x,btScalar y) { return fmodf(x,y); }
    295289       
     
    526520        }
    527521};
    528 #endif //SIMD___SCALAR_H
     522#endif //BT_SCALAR_H
Note: See TracChangeset for help on using the changeset viewer.