diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-11-22 19:44:48 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-11-22 19:44:48 -0500 |
commit | fde531e7c44ea917f745a9f800178fbe83fa19b5 (patch) | |
tree | 7b305c0bb27bf0fd30f9f0feeb7ae6dadbc8d1ae /source/imgui/imgui.h | |
parent | c76ba69fc933a86e526855b097907a728e24568b (diff) |
more refactor; draw samples grid and cursor; gen load fixes
Diffstat (limited to 'source/imgui/imgui.h')
-rw-r--r-- | source/imgui/imgui.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/imgui/imgui.h b/source/imgui/imgui.h index 182c46a..8d2b376 100644 --- a/source/imgui/imgui.h +++ b/source/imgui/imgui.h @@ -243,9 +243,9 @@ typedef unsigned long long ImU64; // 64-bit unsigned integer (post C++11) IM_MSVC_RUNTIME_CHECKS_OFF struct ImVec2 { - float x, y; - ImVec2() { x = y = 0.0f; } - ImVec2(float _x, float _y) { x = _x; y = _y; } + float x = 0.f, y = 0.f; + constexpr ImVec2() = default; + constexpr ImVec2(float _x, float _y) : x(_x), y(_y) {} float operator[] (size_t idx) const { IM_ASSERT(idx <= 1); return (&x)[idx]; } // We very rarely use this [] operator, the assert overhead is fine. float& operator[] (size_t idx) { IM_ASSERT(idx <= 1); return (&x)[idx]; } // We very rarely use this [] operator, the assert overhead is fine. #ifdef IM_VEC2_CLASS_EXTRA |