aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 296461c0..1f73ad72 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -762,6 +762,17 @@ extern enum LogLevel LogLevel;
extern ALint RTPrioLevel;
+
+extern ALuint CPUCapFlags;
+enum {
+ CPU_CAP_MMX = 1<<0,
+ CPU_CAP_SSE = 1<<1,
+ CPU_CAP_NEON = 1<<3,
+};
+
+void FillCPUCaps(void);
+
+
/**
* Starts a try block. Must not be nested within another try block within the
* same function.