Properly detect SSE instruction support in 32-bit MSVC build. (#5943)

This commit is contained in:
assiduous
2022-11-30 11:57:54 -08:00
committed by ocornut
parent a5e96ff99e
commit 66ad2ad539
2 changed files with 2 additions and 1 deletions

View File

@ -56,7 +56,7 @@ Index of this file:
#include <limits.h> // INT_MIN, INT_MAX
// Enable SSE intrinsics if available
#if (defined __SSE__ || defined __x86_64__ || defined _M_X64) && !defined(IMGUI_DISABLE_SSE)
#if (defined __SSE__ || defined __x86_64__ || defined _M_X64 || (defined(_M_IX86_FP) && (_M_IX86_FP >= 1))) && !defined(IMGUI_DISABLE_SSE)
#define IMGUI_ENABLE_SSE
#include <immintrin.h>
#endif