Skip to content

Commit

Permalink
Merge pull request #1202 from Azaezel/matrixTestCompilation
Browse files Browse the repository at this point in the history
proper fix for #1197
  • Loading branch information
LuisAntonRebollo committed Feb 15, 2015
2 parents 9155448 + da706cc commit a3263f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Engine/source/math/test/mMatrixTest.cpp
Expand Up @@ -31,8 +31,8 @@ extern void mInstallLibrary_ASM();

// If we're x86 and not Mac, then include these. There's probably a better way to do this.
#if defined(WIN32) && defined(TORQUE_CPU_X86)
extern "C" void Athlon_MatrixF_x_MatrixF(const F32 *matA, const F32 *matB, F32 *result);
extern "C" void SSE_MatrixF_x_MatrixF(const F32 *matA, const F32 *matB, F32 *result);
void Athlon_MatrixF_x_MatrixF(const F32 *matA, const F32 *matB, F32 *result);
void SSE_MatrixF_x_MatrixF(const F32 *matA, const F32 *matB, F32 *result);
#endif

#if defined( __VEC__ )
Expand Down

0 comments on commit a3263f6

Please sign in to comment.