Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem3/src/bullet/changes_orxonox.diff @ 2670

Last change on this file since 2670 was 2670, checked in by rgrieder, 15 years ago
  • Added version info (written by the linker) to all libraries
  • Target dependency bugfix for msvc in doc/api
  • Fixed possibly non existent html directory when installing docs
  • Merged the three Bullet libraries into a single one
  • No warnings at all from third party libraries
  • Performance tweak in ceguilua CMake files
File size: 654 bytes
  • LinearMath\btScalar.h

     
    227227SIMD_FORCE_INLINE btScalar btAtan2(btScalar x, btScalar y) { return atan2f(x, y); }
    228228SIMD_FORCE_INLINE btScalar btExp(btScalar x) { return expf(x); }
    229229SIMD_FORCE_INLINE btScalar btLog(btScalar x) { return logf(x); }
    230 SIMD_FORCE_INLINE btScalar btPow(btScalar x,btScalar y) { return powf(x,y); }
     230  #if defined( __MINGW32__ )
     231  SIMD_FORCE_INLINE btScalar btPow(btScalar x,btScalar y) { return pow(x,y); }
     232  #else
     233  SIMD_FORCE_INLINE btScalar btPow(btScalar x,btScalar y) { return powf(x,y); }
     234  #endif
    231235
    232236#endif
    233237
Note: See TracBrowser for help on using the repository browser.