currently the imgui ui does not scale on hidpi displays, i have a 2k display with windows scaling at 150%, the imgui window however is tiny and has tiny text. imgui recently added great support for hidpi scaling, and i think it will probably be quite simple to implement. i believe the variable is ImGui.GetStyle().FontScaleDpi but im not completely sure. you can ask glfw or sdl for the display scale that windows is set to, for example 150%, and then update the imgui variable. this will make scaling work.
currently the imgui ui does not scale on hidpi displays, i have a 2k display with windows scaling at 150%, the imgui window however is tiny and has tiny text. imgui recently added great support for hidpi scaling, and i think it will probably be quite simple to implement. i believe the variable is
ImGui.GetStyle().FontScaleDpibut im not completely sure. you can ask glfw or sdl for the display scale that windows is set to, for example 150%, and then update the imgui variable. this will make scaling work.