diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-02-18 20:36:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-18 20:36:46 +0100 |
commit | 247b7e24483931e978f0c203030b5135109655cc (patch) | |
tree | 930c25b13032f8d75425ec06b165099c0c8c0f4b /core/os | |
parent | 310496a89f583b49217915b9add165d51aea575e (diff) | |
parent | 3e0262509f394ad174d8abe0742a6a6b66b0b16a (diff) |
Merge pull request #46131 from bruvzg/move_tablet_to_ds
Move tablet driver API from OS to DisplayServer
Diffstat (limited to 'core/os')
-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; |