diff options
author | Juan Linietsky <juan@godotengine.org> | 2020-03-09 12:56:48 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2020-03-26 15:49:41 +0100 |
commit | 543fb1c4dadd75914d595b089820aef42e691075 (patch) | |
tree | 4dd1537322747d129861ecb1f0dc7118819bfb35 /core | |
parent | 499e07f0102d9969be0aaaaed281c577cacff416 (diff) |
Separate DisplayServer from OS on Windows
Diffstat (limited to 'core')
-rw-r--r-- | core/os/os.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/os/os.h b/core/os/os.h index e15bc90e86..17b688efc4 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -286,6 +286,7 @@ public: virtual bool request_permissions() { return true; } virtual Vector<String> get_granted_permissions() const { return Vector<String>(); } + bool is_hidpi_allowed() const { return _allow_hidpi; } virtual void process_and_drop_events() {} OS(); virtual ~OS(); |