summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/jni/emu_window/emu_window.h
diff options
context:
space:
mode:
authort895 <clombardo169@gmail.com>2024-02-18 16:00:37 +0100
committert895 <clombardo169@gmail.com>2024-02-18 16:00:37 +0100
commit0a3bc6c0cf2698c236b8ea106d2ca3d21466ccba (patch)
tree1a273d95c802fad3d7c467a20292eca1984fa2e9 /src/android/app/src/main/jni/emu_window/emu_window.h
parentMerge pull request #13047 from anpilley/import-firmware (diff)
downloadyuzu-0a3bc6c0cf2698c236b8ea106d2ca3d21466ccba.tar
yuzu-0a3bc6c0cf2698c236b8ea106d2ca3d21466ccba.tar.gz
yuzu-0a3bc6c0cf2698c236b8ea106d2ca3d21466ccba.tar.bz2
yuzu-0a3bc6c0cf2698c236b8ea106d2ca3d21466ccba.tar.lz
yuzu-0a3bc6c0cf2698c236b8ea106d2ca3d21466ccba.tar.xz
yuzu-0a3bc6c0cf2698c236b8ea106d2ca3d21466ccba.tar.zst
yuzu-0a3bc6c0cf2698c236b8ea106d2ca3d21466ccba.zip
Diffstat (limited to 'src/android/app/src/main/jni/emu_window/emu_window.h')
-rw-r--r--src/android/app/src/main/jni/emu_window/emu_window.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/android/app/src/main/jni/emu_window/emu_window.h b/src/android/app/src/main/jni/emu_window/emu_window.h
index 34704ae95..d7b5fc6da 100644
--- a/src/android/app/src/main/jni/emu_window/emu_window.h
+++ b/src/android/app/src/main/jni/emu_window/emu_window.h
@@ -38,6 +38,10 @@ public:
void OnSurfaceChanged(ANativeWindow* surface);
void OnFrameDisplayed() override;
+ void OnTouchPressed(int id, float x, float y);
+ void OnTouchMoved(int id, float x, float y);
+ void OnTouchReleased(int id);
+
std::unique_ptr<Core::Frontend::GraphicsContext> CreateSharedContext() const override {
return {std::make_unique<GraphicsContext_Android>(m_driver_library)};
}