mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-29 09:05:41 +00:00
Qt: Improve imgui hidpi scaling
This commit is contained in:
parent
168eb5fe2d
commit
686df4a203
|
@ -12,8 +12,8 @@
|
||||||
#include "spu.h"
|
#include "spu.h"
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "timers.h"
|
#include "timers.h"
|
||||||
#include <cstring>
|
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
|
#include <cstring>
|
||||||
#include <imgui.h>
|
#include <imgui.h>
|
||||||
Log_SetChannel(HostInterface);
|
Log_SetChannel(HostInterface);
|
||||||
|
|
||||||
|
@ -113,8 +113,10 @@ void HostInterface::DrawFPSWindow()
|
||||||
if (!(show_fps | show_vps | show_speed))
|
if (!(show_fps | show_vps | show_speed))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
ImGui::SetNextWindowPos(ImVec2(ImGui::GetIO().DisplaySize.x - 175.0f, 0.0f), ImGuiCond_Always);
|
const ImVec2 window_size =
|
||||||
ImGui::SetNextWindowSize(ImVec2(175.0f, 16.0f));
|
ImVec2(175.0f * ImGui::GetIO().DisplayFramebufferScale.x, 16.0f * ImGui::GetIO().DisplayFramebufferScale.y);
|
||||||
|
ImGui::SetNextWindowPos(ImVec2(ImGui::GetIO().DisplaySize.x - window_size.x, 0.0f), ImGuiCond_Always);
|
||||||
|
ImGui::SetNextWindowSize(window_size);
|
||||||
|
|
||||||
if (!ImGui::Begin("FPSWindow", nullptr,
|
if (!ImGui::Begin("FPSWindow", nullptr,
|
||||||
ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse |
|
ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse |
|
||||||
|
|
|
@ -45,6 +45,12 @@ bool QtDisplayWindow::createImGuiContext()
|
||||||
io.DisplaySize.x = static_cast<float>(m_window_width);
|
io.DisplaySize.x = static_cast<float>(m_window_width);
|
||||||
io.DisplaySize.y = static_cast<float>(m_window_height);
|
io.DisplaySize.y = static_cast<float>(m_window_height);
|
||||||
|
|
||||||
|
const float framebuffer_scale = static_cast<float>(devicePixelRatio());
|
||||||
|
io.DisplayFramebufferScale.x = framebuffer_scale;
|
||||||
|
io.DisplayFramebufferScale.y = framebuffer_scale;
|
||||||
|
io.FontGlobalScale = framebuffer_scale;
|
||||||
|
ImGui::GetStyle().ScaleAllSizes(framebuffer_scale);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue