mirror of
https://github.com/azahar-emu/azahar.git
synced 2026-06-05 18:23:39 -04:00
common/cpu_detect: Remove SSE/SSE2 detection (#1754)
This commit is contained in:
parent
f3fb0b729e
commit
4010f4bc1f
2 changed files with 0 additions and 6 deletions
|
|
@ -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…
Add table
Reference in a new issue