You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#defineIM_UNICODE_CODEPOINT_INVALID0xFFFD// Invalid Unicode code point (standard value).
1655
+
#ifdef IMGUI_USE_WCHAR32
1656
+
#defineIM_UNICODE_CODEPOINT_MAX0x10FFFF// Maximum Unicode code point supported by this build.
1657
+
#else
1658
+
#defineIM_UNICODE_CODEPOINT_MAX0xFFFF// Maximum Unicode code point supported by this build.
1659
+
#endif
1660
+
1655
1661
// Helper: Execute a block of code at maximum once a frame. Convenient if you want to quickly create an UI within deep-nested code that runs multiple times every frame.
1656
1662
// Usage: static ImGuiOnceUponAFrame oaf; if (oaf) ImGui::Text("This will be called only once per frame");
0 commit comments