diff options
author | Chris Robinson <[email protected]> | 2012-08-13 10:37:49 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-08-13 10:37:49 -0700 |
commit | 17dfaa3aaef28f38b27c5d797be0a938c4ca38e2 (patch) | |
tree | f8c9eeae91028edf32b7df98513c39add41d4e40 /OpenAL32/Include | |
parent | 0a3eba08d8af653a4e7ec803b86c458560e14484 (diff) |
Add a config option to disable use of CPU extensions
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 1f73ad72..f05d7316 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -768,9 +768,11 @@ enum { CPU_CAP_MMX = 1<<0, CPU_CAP_SSE = 1<<1, CPU_CAP_NEON = 1<<3, + + CPU_CAP_ALL = CPU_CAP_MMX|CPU_CAP_SSE|CPU_CAP_NEON }; -void FillCPUCaps(void); +void FillCPUCaps(ALuint capfilter); /** |