Merge "Convert MotionEvent#getSurfaceRotation to ui::Rotation"
This commit is contained in:
committed by
Android (Google) Code Review
commit
b9ede251d9
@@ -763,7 +763,12 @@ static void android_view_MotionEvent_nativeScale(jlong nativePtr, jfloat scale)
|
||||
|
||||
static jint android_view_MotionEvent_nativeGetSurfaceRotation(jlong nativePtr) {
|
||||
MotionEvent* event = reinterpret_cast<MotionEvent*>(nativePtr);
|
||||
return jint(event->getSurfaceRotation());
|
||||
auto rotation = event->getSurfaceRotation();
|
||||
if (rotation) {
|
||||
return static_cast<jint>(rotation.value());
|
||||
} else {
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user