// Warning: the validity of monitor DPI information on Windows depends on the application DPI awareness settings, which generally needs to be set in the manifest or at runtime.
// Warning: the validity of monitor DPI information on Windows depends on the application DPI awareness settings, which generally needs to be set in the manifest or at runtime.
ImGui::BulletText("Monitor #%d: Min (%.0f,%.0f) Max (%.0f,%.0f) Size (%.0f,%.0f)",i,mon.Pos.x,mon.Pos.y,mon.Pos.x+mon.Size.x,mon.Pos.y+mon.Size.y,mon.Size.x,mon.Size.y);
ImGui::BulletText("Monitor #%d: DPI %.0f%%, Min (%.0f,%.0f), Max (%.0f,%.0f), Size (%.0f,%.0f)",i,mon.DpiScale*100.0f,mon.Pos.x,mon.Pos.y,mon.Pos.x+mon.Size.x,mon.Pos.y+mon.Size.y,mon.Size.x,mon.Size.y);