mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
* BugFix: Remove unused 3DNow! extensions and broken SSE extensions.
This commit is contained in:
parent
27fd15de83
commit
c687c0d23a
7 changed files with 11 additions and 448 deletions
|
|
@ -60,19 +60,6 @@ TEST(MatrixF, MultiplyImplmentations)
|
|||
U32 cpuProperties = Platform::SystemInfo.processor.properties;
|
||||
bool same;
|
||||
|
||||
// Test 3D NOW! if it is available
|
||||
F32 mrAMD[16];
|
||||
if (cpuProperties & CPU_PROP_3DNOW)
|
||||
{
|
||||
Athlon_MatrixF_x_MatrixF(m1, m2, mrAMD);
|
||||
|
||||
same = true;
|
||||
for (S32 i = 0; i < 16; i++)
|
||||
same &= mIsEqual(mrC[i], mrAMD[i]);
|
||||
|
||||
EXPECT_TRUE(same) << "Matrix multiplication verification failed. (C vs. 3D NOW!)";
|
||||
}
|
||||
|
||||
// Test SSE if it is available
|
||||
F32 mrSSE[16];
|
||||
if (cpuProperties & CPU_PROP_SSE)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue