diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2021-02-17 16:07:56 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2021-02-18 17:12:24 +0200 |
commit | 3e0262509f394ad174d8abe0742a6a6b66b0b16a (patch) | |
tree | 23fa2a1b1b7aeb08e7d8a37b1b0562bcda8dc9e0 /core/os/os.h | |
parent | 5c2fe970b87f8e95306bad0f713567a150b1e442 (diff) | |
download | redot-engine-3e0262509f394ad174d8abe0742a6a6b66b0b16a.tar.gz |
Move tablet driver API from OS to DisplayServer.
Diffstat (limited to 'core/os/os.h')
-rw-r--r-- | core/os/os.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/core/os/os.h b/core/os/os.h index e02ce7d5ec..77a54ba68a 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -149,11 +149,6 @@ public: bool is_layered_allowed() const { return _allow_layered; } bool is_hidpi_allowed() const { return _allow_hidpi; } - virtual int get_tablet_driver_count() const { return 0; }; - virtual String get_tablet_driver_name(int p_driver) const { return ""; }; - virtual String get_current_tablet_driver() const { return ""; }; - virtual void set_current_tablet_driver(const String &p_driver){}; - void ensure_user_data_dir(); virtual MainLoop *get_main_loop() const = 0; |