aboutsummaryrefslogtreecommitdiff
path: root/src/hid_core/resources/digitizer/digitizer.h
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2024-01-06 15:38:59 -0600
committerGitHub <noreply@github.com>2024-01-06 15:38:59 -0600
commit12fd2ae86d78c69d5bce6ab5b5ba26a4b265ac92 (patch)
tree3b95cbb74be05f0ce7a007353f1f9f95e1ed3901 /src/hid_core/resources/digitizer/digitizer.h
parent92a331af76cba638f01490eeb0045ca4d6d27df7 (diff)
parentee847f8ff0b1b0aec39c1b78c010bc0c08a0a613 (diff)
Merge pull request #12582 from german77/hid-core
hid_core: Move hid to it's own subproject
Diffstat (limited to 'src/hid_core/resources/digitizer/digitizer.h')
-rw-r--r--src/hid_core/resources/digitizer/digitizer.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/hid_core/resources/digitizer/digitizer.h b/src/hid_core/resources/digitizer/digitizer.h
new file mode 100644
index 000000000..e031a16b0
--- /dev/null
+++ b/src/hid_core/resources/digitizer/digitizer.h
@@ -0,0 +1,27 @@
+// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "hid_core/resources/controller_base.h"
+
+namespace Service::HID {
+
+class Digitizer final : public ControllerBase {
+public:
+ explicit Digitizer(Core::HID::HIDCore& hid_core_);
+ ~Digitizer() override;
+
+ // Called when the controller is initialized
+ void OnInit() override;
+
+ // When the controller is released
+ void OnRelease() override;
+
+ // When the controller is requesting an update for the shared memory
+ void OnUpdate(const Core::Timing::CoreTiming& core_timing) override;
+
+private:
+ bool smart_update{};
+};
+} // namespace Service::HID