mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 09:12:52 +02:00
Merge pull request #1575 from mrkcdf/794-fix-handling-of-fractional-display-scaling
Replace call to devicePixelRatio() with devicePixelRatioF().
This commit is contained in:
commit
7c91ceba06
1 changed files with 1 additions and 1 deletions
|
@ -844,7 +844,7 @@ glm::uvec2 OpenGLDisplayPlugin::getSurfacePixels() const {
|
|||
uvec2 result;
|
||||
auto window = _container->getPrimaryWidget();
|
||||
if (window) {
|
||||
result = toGlm(window->geometry().size() * window->devicePixelRatio());
|
||||
result = toGlm(window->geometry().size() * window->devicePixelRatioF());
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue