aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/cpu_caps.h
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2019-12-12 19:21:00 +0100
committerSven Gothel <[email protected]>2019-12-12 19:21:00 +0100
commit4df06c6894b39af5bf4681c0acf0c1c080084c80 (patch)
tree2505eb6e3b5798db34033c4cac2d4613bf6bda44 /Alc/cpu_caps.h
parent8915501ed02eac2b3bce9a7fc06cb1ab562901c3 (diff)
parentc0cf323e1d56ce605e90927324d2fdafcfbb564a (diff)
merge v1.20.0
Diffstat (limited to 'Alc/cpu_caps.h')
-rw-r--r--Alc/cpu_caps.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/Alc/cpu_caps.h b/Alc/cpu_caps.h
deleted file mode 100644
index 328d470e..00000000
--- a/Alc/cpu_caps.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#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 */