Linux build.

This commit is contained in:
mfeemster
2015-11-22 17:03:11 -08:00
parent 330074cfb2
commit 5e82167155
10 changed files with 34 additions and 27 deletions

View File

@ -31,11 +31,11 @@
#if defined(__APPLE__) || defined(_MSC_VER)
#define sincos(x, s, c) *(s)=std::sin(x); *(c)=std::cos(x);
#else
/*static void sincos(float x, float* s, float* c)
static void sincos(float x, float* s, float* c)
{
*s = std::sin(x);
*c = std::cos(x);
}*/
}
#endif
namespace EmberNs