aboutsummaryrefslogtreecommitdiffstats
path: root/alc/cpu_caps.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-07-28 18:56:04 -0700
committerChris Robinson <[email protected]>2019-07-28 18:56:04 -0700
commitcb3e96e75640730b9391f0d2d922eecd9ee2ce79 (patch)
tree23520551bddb2a80354e44da47f54201fdc084f0 /alc/cpu_caps.h
parent93e60919c8f387c36c267ca9faa1ac653254aea6 (diff)
Rename Alc to alc
Diffstat (limited to 'alc/cpu_caps.h')
-rw-r--r--alc/cpu_caps.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/alc/cpu_caps.h b/alc/cpu_caps.h
new file mode 100644
index 00000000..64a4ee45
--- /dev/null
+++ b/alc/cpu_caps.h
@@ -0,0 +1,16 @@
+#ifndef CPU_CAPS_H
+#define CPU_CAPS_H
+
+
+extern int CPUCapFlags;
+enum {
+ CPU_CAP_SSE = 1<<0,
+ CPU_CAP_SSE2 = 1<<1,
+ CPU_CAP_SSE3 = 1<<2,
+ CPU_CAP_SSE4_1 = 1<<3,
+ CPU_CAP_NEON = 1<<4,
+};
+
+void FillCPUCaps(int capfilter);
+
+#endif /* CPU_CAPS_H */