godot/tools/editor/editor_scale.cpp

8 lines
128 B
C++
Raw Normal View History

#include "editor_scale.h"
#include "os/os.h"
bool editor_is_hidpi() {
return OS::get_singleton()->get_screen_dpi(0) > 150;
}