mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
* BugFix: Remove the last remnant of 3DNow! Extensions.
This commit is contained in:
parent
2368f1d97c
commit
4a92ecf9e5
1 changed files with 0 additions and 5 deletions
|
|
@ -82,9 +82,6 @@ static void detectCpuFeatures(Platform::SystemInfo_struct::Processor &processor)
|
|||
U32 edx = cpuInfo[3]; // edx
|
||||
U32 ecx = cpuInfo[2]; // ecx
|
||||
|
||||
if (processor.type == ProcessorType::CPU_AMD)
|
||||
processor.properties |= (edx & BIT_3DNOW) ? CPU_PROP_3DNOW : 0;
|
||||
|
||||
processor.properties |= (edx & BIT_MMX) ? CPU_PROP_MMX : 0;
|
||||
processor.properties |= (edx & BIT_SSE) ? CPU_PROP_SSE : 0;
|
||||
processor.properties |= (edx & BIT_SSE2) ? CPU_PROP_SSE2 : 0;
|
||||
|
|
@ -165,8 +162,6 @@ void Processor::init()
|
|||
Con::printf(" Processor: %s", Platform::SystemInfo.processor.name);
|
||||
if (Platform::SystemInfo.processor.properties & CPU_PROP_MMX)
|
||||
Con::printf(" MMX detected" );
|
||||
if (Platform::SystemInfo.processor.properties & CPU_PROP_3DNOW)
|
||||
Con::printf(" 3DNow detected" );
|
||||
if (Platform::SystemInfo.processor.properties & CPU_PROP_SSE)
|
||||
Con::printf(" SSE detected" );
|
||||
if (Platform::SystemInfo.processor.properties & CPU_PROP_SSE2)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue