From 0150f521f740fc3b1a00d49b432edd0ed32e31d1 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 14 Aug 2021 15:03:54 +0200 Subject: ControllerInterface/Android: Rip out ButtonManager ButtonManager is very different from how a normal input backend works, and is making it hard for us to improve controller support on Android. The following commits will add a new input backend in its place. --- Source/Core/InputCommon/ControllerInterface/Android/Android.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'Source/Core/InputCommon/ControllerInterface/Android/Android.h') diff --git a/Source/Core/InputCommon/ControllerInterface/Android/Android.h b/Source/Core/InputCommon/ControllerInterface/Android/Android.h index 2cc3c5a22b..9f57f5ba2e 100644 --- a/Source/Core/InputCommon/ControllerInterface/Android/Android.h +++ b/Source/Core/InputCommon/ControllerInterface/Android/Android.h @@ -5,7 +5,5 @@ namespace ciface::Android { -void SetMotionSensorsEnabled(bool accelerometer_enabled, bool gyroscope_enabled); - void PopulateDevices(); } // namespace ciface::Android -- cgit v1.2.3 From 792cb6219533bd9ce5154da9a87f6eabddfaa977 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Fri, 31 Dec 2021 16:14:15 +0100 Subject: ControllerInterface/Android: Implement device population --- Source/Core/InputCommon/ControllerInterface/Android/Android.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Source/Core/InputCommon/ControllerInterface/Android/Android.h') diff --git a/Source/Core/InputCommon/ControllerInterface/Android/Android.h b/Source/Core/InputCommon/ControllerInterface/Android/Android.h index 9f57f5ba2e..8b8478d7ac 100644 --- a/Source/Core/InputCommon/ControllerInterface/Android/Android.h +++ b/Source/Core/InputCommon/ControllerInterface/Android/Android.h @@ -1,9 +1,13 @@ -// Copyright 2008 Dolphin Emulator Project +// Copyright 2021 Dolphin Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once namespace ciface::Android { +void Init(); +void Shutdown(); + void PopulateDevices(); + } // namespace ciface::Android -- cgit v1.2.3