CommonLibSSE (Parapets fork)
Loading...
Searching...
No Matches
hkSseMathTypes.h
Go to the documentation of this file.
1#pragma once
2
3namespace RE
4{
5 using hkQuadReal = __m128;
6 static_assert(sizeof(hkQuadReal) == 0x10);
7
9 {
10 public:
11 enum class Mask
12 {
13 kNone = 0,
14
15 kX = 1,
16 kY = 2,
17 kXY = 3,
18
19 kZ = 4,
20 kXZ = 5,
21 kYZ = 6,
22 kXYZ = 7,
23
24 kW = 8,
25 kXW = 9,
26 kYW = 10,
27 kXYW = 11,
28
29 kZW = 12,
30 kXZW = 13,
31 kYZW = 14,
32 kXYZW = 15
33 };
34
35 // members
37 };
38 static_assert(sizeof(hkVector4Comparison) == 0x10);
39}
Definition: hkSseMathTypes.h:9
Mask
Definition: hkSseMathTypes.h:12
hkQuadReal mask
Definition: hkSseMathTypes.h:36
Definition: AbsorbEffect.h:6
__m128 hkQuadReal
Definition: hkSseMathTypes.h:5