repo.or.cz
/
openal-soft.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Avoid static constexpr for arrays iterated over at run-time
[openal-soft.git]
/
alc
/
cpu_caps.h
blob
64a4ee453a662ff5b33f7a898208f95a595a1823
1
#ifndef CPU_CAPS_H
2
#define CPU_CAPS_H
3
4
5
extern
int
CPUCapFlags
;
6
enum
{
7
CPU_CAP_SSE
=
1
<<
0
,
8
CPU_CAP_SSE2
=
1
<<
1
,
9
CPU_CAP_SSE3
=
1
<<
2
,
10
CPU_CAP_SSE4_1
=
1
<<
3
,
11
CPU_CAP_NEON
=
1
<<
4
,
12
};
13
14
void
FillCPUCaps
(
int
capfilter
);
15
16
#endif
/* CPU_CAPS_H */