aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/cpu_caps.h
blob: 1d867f375131c829e1f33c7af9ccfa7ce9e533c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef CPU_CAPS_H
#define CPU_CAPS_H

#ifdef __cplusplus
extern "C" {
#endif

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);

#ifdef __cplusplus
} // extern "C"
#endif

#endif /* CPU_CAPS_H */