mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-03-27 22:06:39 -06:00
common/cpu_detect: Remove SSE/SSE2 detection (#1754)
This commit is contained in:
parent
f3fb0b729e
commit
4010f4bc1f
@ -80,10 +80,6 @@ static CPUCaps Detect() {
|
||||
if (max_std_fn >= 1) {
|
||||
__cpuid(cpu_id, 0x00000001);
|
||||
|
||||
if ((cpu_id[3] >> 25) & 1)
|
||||
caps.sse = true;
|
||||
if ((cpu_id[3] >> 26) & 1)
|
||||
caps.sse2 = true;
|
||||
if ((cpu_id[2]) & 1)
|
||||
caps.sse3 = true;
|
||||
if ((cpu_id[2] >> 9) & 1)
|
||||
|
||||
@ -16,8 +16,6 @@ namespace Common {
|
||||
struct CPUCaps {
|
||||
char cpu_string[0x21];
|
||||
char brand_string[0x41];
|
||||
bool sse;
|
||||
bool sse2;
|
||||
bool sse3;
|
||||
bool ssse3;
|
||||
bool sse4_1;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user