|
37 | 37 | * |
38 | 38 | ****************************************************************************/ |
39 | 39 |
|
40 | | - //------------------------------------------------------------------------------ |
41 | | - // Assignment operations |
42 | | - //------------------------------------------------------------------------------ |
| 40 | +//------------------------------------------------------------------------------ |
| 41 | +// Assignment operations |
| 42 | +//------------------------------------------------------------------------------ |
43 | 43 |
|
44 | | - //------------------------------------------------------------------------------ |
45 | | - // Return a vector with all elements equaling zero |
| 44 | +//------------------------------------------------------------------------------ |
| 45 | +// Return a vector with all elements equaling zero |
46 | 46 | inline XMVECTOR XM_CALLCONV XMVectorZero() noexcept |
47 | 47 | { |
48 | 48 | #if defined(_XM_NO_INTRINSICS_) |
@@ -6183,11 +6183,11 @@ inline XMVECTOR XM_CALLCONV XMVectorBaryCentricV |
6183 | 6183 | * |
6184 | 6184 | ****************************************************************************/ |
6185 | 6185 |
|
6186 | | - //------------------------------------------------------------------------------ |
6187 | | - // Comparison operations |
6188 | | - //------------------------------------------------------------------------------ |
| 6186 | +//------------------------------------------------------------------------------ |
| 6187 | +// Comparison operations |
| 6188 | +//------------------------------------------------------------------------------ |
6189 | 6189 |
|
6190 | | - //------------------------------------------------------------------------------ |
| 6190 | +//------------------------------------------------------------------------------ |
6191 | 6191 |
|
6192 | 6192 | inline bool XM_CALLCONV XMVector2Equal |
6193 | 6193 | ( |
@@ -8911,11 +8911,11 @@ inline XMFLOAT2* XM_CALLCONV XMVector2TransformNormalStream |
8911 | 8911 | * |
8912 | 8912 | ****************************************************************************/ |
8913 | 8913 |
|
8914 | | - //------------------------------------------------------------------------------ |
8915 | | - // Comparison operations |
8916 | | - //------------------------------------------------------------------------------ |
| 8914 | +//------------------------------------------------------------------------------ |
| 8915 | +// Comparison operations |
| 8916 | +//------------------------------------------------------------------------------ |
8917 | 8917 |
|
8918 | | - //------------------------------------------------------------------------------ |
| 8918 | +//------------------------------------------------------------------------------ |
8919 | 8919 |
|
8920 | 8920 | inline bool XM_CALLCONV XMVector3Equal |
8921 | 8921 | ( |
@@ -12776,11 +12776,11 @@ inline XMFLOAT3* XM_CALLCONV XMVector3UnprojectStream |
12776 | 12776 | * |
12777 | 12777 | ****************************************************************************/ |
12778 | 12778 |
|
12779 | | - //------------------------------------------------------------------------------ |
12780 | | - // Comparison operations |
12781 | | - //------------------------------------------------------------------------------ |
| 12779 | +//------------------------------------------------------------------------------ |
| 12780 | +// Comparison operations |
| 12781 | +//------------------------------------------------------------------------------ |
12782 | 12782 |
|
12783 | | - //------------------------------------------------------------------------------ |
| 12783 | +//------------------------------------------------------------------------------ |
12784 | 12784 |
|
12785 | 12785 | inline bool XM_CALLCONV XMVector4Equal |
12786 | 12786 | ( |
@@ -13512,7 +13512,7 @@ inline XMVECTOR XM_CALLCONV XMVector4Cross |
13512 | 13512 | XMVECTOR vTemp2 = XM_PERMUTE_PS(V2, _MM_SHUFFLE(1, 3, 2, 3)); |
13513 | 13513 | vTemp3 = XM_PERMUTE_PS(vTemp3, _MM_SHUFFLE(1, 3, 0, 1)); |
13514 | 13514 | vResult = XM_FNMADD_PS(vTemp2, vTemp3, vResult); |
13515 | | - // term1 * V1yxxx |
| 13515 | + // term1 * V1yxxx |
13516 | 13516 | XMVECTOR vTemp1 = XM_PERMUTE_PS(V1, _MM_SHUFFLE(0, 0, 0, 1)); |
13517 | 13517 | vResult = _mm_mul_ps(vResult, vTemp1); |
13518 | 13518 |
|
@@ -14690,7 +14690,7 @@ inline XMFLOAT4* XM_CALLCONV XMVector4TransformStream |
14690 | 14690 |
|
14691 | 14691 | #ifndef _XM_NO_XMVECTOR_OVERLOADS_ |
14692 | 14692 |
|
14693 | | - //------------------------------------------------------------------------------ |
| 14693 | +//------------------------------------------------------------------------------ |
14694 | 14694 |
|
14695 | 14695 | inline XMVECTOR XM_CALLCONV operator+ (FXMVECTOR V) noexcept |
14696 | 14696 | { |
|
0 commit comments