summaryrefslogtreecommitdiff
path: root/src/common/android/id_cache.h
diff options
context:
space:
mode:
authorGravatar liamwhite2024-02-17 22:22:06 -0500
committerGravatar GitHub2024-02-17 22:22:06 -0500
commite7146309dec4fab504977186571228571efed009 (patch)
treeb1302cb237f91c5f0ccb9863a0b0a2fb427a3c14 /src/common/android/id_cache.h
parentMerge pull request #13017 from liamwhite/suspension (diff)
parentandroid: Input mapping (diff)
downloadyuzu-e7146309dec4fab504977186571228571efed009.tar.gz
yuzu-e7146309dec4fab504977186571228571efed009.tar.xz
yuzu-e7146309dec4fab504977186571228571efed009.zip
Merge pull request #13034 from t895/map-all-the-inputs
android: Input mapping
Diffstat (limited to 'src/common/android/id_cache.h')
-rw-r--r--src/common/android/id_cache.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/common/android/id_cache.h b/src/common/android/id_cache.h
index 47802f96c..cd2844dcc 100644
--- a/src/common/android/id_cache.h
+++ b/src/common/android/id_cache.h
@@ -85,4 +85,28 @@ jclass GetBooleanClass();
85jmethodID GetBooleanConstructor(); 85jmethodID GetBooleanConstructor();
86jfieldID GetBooleanValueField(); 86jfieldID GetBooleanValueField();
87 87
88jclass GetPlayerInputClass();
89jmethodID GetPlayerInputConstructor();
90jfieldID GetPlayerInputConnectedField();
91jfieldID GetPlayerInputButtonsField();
92jfieldID GetPlayerInputAnalogsField();
93jfieldID GetPlayerInputMotionsField();
94jfieldID GetPlayerInputVibrationEnabledField();
95jfieldID GetPlayerInputVibrationStrengthField();
96jfieldID GetPlayerInputBodyColorLeftField();
97jfieldID GetPlayerInputBodyColorRightField();
98jfieldID GetPlayerInputButtonColorLeftField();
99jfieldID GetPlayerInputButtonColorRightField();
100jfieldID GetPlayerInputProfileNameField();
101jfieldID GetPlayerInputUseSystemVibratorField();
102
103jclass GetYuzuInputDeviceInterface();
104jmethodID GetYuzuDeviceGetName();
105jmethodID GetYuzuDeviceGetGUID();
106jmethodID GetYuzuDeviceGetPort();
107jmethodID GetYuzuDeviceGetSupportsVibration();
108jmethodID GetYuzuDeviceVibrate();
109jmethodID GetYuzuDeviceGetAxes();
110jmethodID GetYuzuDeviceHasKeys();
111
88} // namespace Common::Android 112} // namespace Common::Android