aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2013-05-22 16:59:20 -0700
committerChris Robinson <[email protected]>2013-05-22 17:04:37 -0700
commit38a9e642df2b7359cfc453bf47b2d584ed428cda (patch)
tree742df56d0f0ce23e6c662f3ebf493620b0269f31 /OpenAL32
parentb80efeb87d719fc87501e9042ff2bfe4bf38e739 (diff)
Check for SSE2 and set the denormals-are-zero bit for mixing if available
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 6ad7382e..743242d7 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -837,7 +837,8 @@ extern ALint RTPrioLevel;
extern ALuint CPUCapFlags;
enum {
CPU_CAP_SSE = 1<<0,
- CPU_CAP_NEON = 1<<1,
+ CPU_CAP_SSE2 = 1<<1,
+ CPU_CAP_NEON = 1<<2,
};
void FillCPUCaps(ALuint capfilter);