blob: 8401b03f9eb7347361863116632efe474846ad3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "cru/platform/native/Base.hpp"
// The dpi awareness needs to be implemented in the future. Currently we use 96
// as default.
namespace cru::platform::native::win {
inline platform::native::Dpi GetDpi() {
return platform::native::Dpi{96.0f, 96.0f};
}
} // namespace cru::platform::native::win
|