mirror of
https://github.com/ocornut/imgui.git
synced 2026-06-01 01:34:57 +08:00
This commit is contained in:
@@ -201,6 +201,8 @@ Other Changes:
|
|||||||
flags of last submitted item. (#9127)
|
flags of last submitted item. (#9127)
|
||||||
- Log/Capture: fixed erroneously injecting extra carriage returns in output
|
- Log/Capture: fixed erroneously injecting extra carriage returns in output
|
||||||
buffer when ItemSpacing.y > FramePadding.y + 1.
|
buffer when ItemSpacing.y > FramePadding.y + 1.
|
||||||
|
- Misc: fixed build on ARM64/ARM64EC targets trying to use SSE/immintrin.h.
|
||||||
|
(#9209, #5943, #4091) [@navvyswethgraphics]
|
||||||
- Images:
|
- Images:
|
||||||
- Added style.ImageRounding, ImGuiStyleVar_ImageRounding to configure
|
- Added style.ImageRounding, ImGuiStyleVar_ImageRounding to configure
|
||||||
rounding of Image() widgets. (#2942, #845)
|
rounding of Image() widgets. (#2942, #845)
|
||||||
|
|||||||
+1
-1
@@ -60,7 +60,7 @@ Index of this file:
|
|||||||
#include <limits.h> // INT_MIN, INT_MAX
|
#include <limits.h> // INT_MIN, INT_MAX
|
||||||
|
|
||||||
// Enable SSE intrinsics if available
|
// Enable SSE intrinsics if available
|
||||||
#if (defined __SSE__ || defined __x86_64__ || defined _M_X64 || (defined(_M_IX86_FP) && (_M_IX86_FP >= 1))) && !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) && !defined(_M_ARM64) && !defined(_M_ARM64EC)
|
||||||
#define IMGUI_ENABLE_SSE
|
#define IMGUI_ENABLE_SSE
|
||||||
#include <immintrin.h>
|
#include <immintrin.h>
|
||||||
#if (defined __AVX__ || defined __SSE4_2__)
|
#if (defined __AVX__ || defined __SSE4_2__)
|
||||||
|
|||||||
Reference in New Issue
Block a user