diff --git a/native/android/choreographer.cpp b/native/android/choreographer.cpp index deee5b173c214..fbd4b2ec8736e 100644 --- a/native/android/choreographer.cpp +++ b/native/android/choreographer.cpp @@ -71,11 +71,12 @@ int64_t AChoreographerFrameCallbackData_getFrameTimelineVsyncId( const AChoreographerFrameCallbackData* data, size_t index) { return AChoreographerFrameCallbackData_routeGetFrameTimelineVsyncId(data, index); } -int64_t AChoreographerFrameCallbackData_getFrameTimelineExpectedPresentTime( +int64_t AChoreographerFrameCallbackData_getFrameTimelineExpectedPresentTimeNanos( const AChoreographerFrameCallbackData* data, size_t index) { - return AChoreographerFrameCallbackData_routeGetFrameTimelineExpectedPresentTime(data, index); + return AChoreographerFrameCallbackData_routeGetFrameTimelineExpectedPresentTimeNanos(data, + index); } -int64_t AChoreographerFrameCallbackData_getFrameTimelineDeadline( +int64_t AChoreographerFrameCallbackData_getFrameTimelineDeadlineNanos( const AChoreographerFrameCallbackData* data, size_t index) { - return AChoreographerFrameCallbackData_routeGetFrameTimelineDeadline(data, index); + return AChoreographerFrameCallbackData_routeGetFrameTimelineDeadlineNanos(data, index); } diff --git a/native/android/libandroid.map.txt b/native/android/libandroid.map.txt index 3c1aa4409254b..35c794e826950 100644 --- a/native/android/libandroid.map.txt +++ b/native/android/libandroid.map.txt @@ -34,8 +34,8 @@ LIBANDROID { AChoreographerFrameCallbackData_getFrameTimelinesLength; # introduced=33 AChoreographerFrameCallbackData_getPreferredFrameTimelineIndex; # introduced=33 AChoreographerFrameCallbackData_getFrameTimelineVsyncId; # introduced=33 - AChoreographerFrameCallbackData_getFrameTimelineExpectedPresentTime; # introduced=33 - AChoreographerFrameCallbackData_getFrameTimelineDeadline; # introduced=33 + AChoreographerFrameCallbackData_getFrameTimelineExpectedPresentTimeNanos; # introduced=33 + AChoreographerFrameCallbackData_getFrameTimelineDeadlineNanos; # introduced=33 AConfiguration_copy; AConfiguration_delete; AConfiguration_diff;