Skip to content

Commit 125cb1f

Browse files
committed
[d3d8] replaceNaN: Use unaligned SIMD _mm_loadu_ps
1 parent 40ec8d5 commit 125cb1f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/util/util_vector.h

+5
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,12 @@ namespace dxvk {
153153
inline Vector4 replaceNaN(Vector4 a) {
154154
#ifdef DXVK_ARCH_X86
155155
Vector4 result;
156+
#if !defined(_WIN64) && !defined(__x86_64__)
157+
// On 32-bit, the vector may not be 16 byte aligned
158+
__m128 value = _mm_loadu_ps(a.data);
159+
#else
156160
__m128 value = _mm_load_ps(a.data);
161+
#endif
157162
__m128 mask = _mm_cmpeq_ps(value, value);
158163
value = _mm_and_ps(value, mask);
159164
_mm_store_ps(result.data, value);

0 commit comments

Comments
 (0)