blob: deee5b173c214b77725e25f94ebb1e187f1f2944 [file] [log] [blame]
Alec Mouricf3ad872020-04-27 22:36:17 -07001/*
2 * Copyright 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <private/android/choreographer.h>
18
19using namespace android;
20
21AChoreographer* AChoreographer_getInstance() {
22 return AChoreographer_routeGetInstance();
23}
24void AChoreographer_postFrameCallback(AChoreographer* choreographer,
25 AChoreographer_frameCallback callback, void* data) {
26 return AChoreographer_routePostFrameCallback(choreographer, callback, data);
27}
28void AChoreographer_postFrameCallbackDelayed(AChoreographer* choreographer,
29 AChoreographer_frameCallback callback, void* data,
30 long delayMillis) {
31 return AChoreographer_routePostFrameCallbackDelayed(choreographer, callback, data, delayMillis);
32}
33void AChoreographer_postFrameCallback64(AChoreographer* choreographer,
34 AChoreographer_frameCallback64 callback, void* data) {
35 return AChoreographer_routePostFrameCallback64(choreographer, callback, data);
36}
37void AChoreographer_postFrameCallbackDelayed64(AChoreographer* choreographer,
38 AChoreographer_frameCallback64 callback, void* data,
39 uint32_t delayMillis) {
40 return AChoreographer_routePostFrameCallbackDelayed64(choreographer, callback, data,
41 delayMillis);
42}
Rachel Lee6350ff02021-09-01 13:30:13 -070043void AChoreographer_postExtendedFrameCallback(AChoreographer* choreographer,
44 AChoreographer_extendedFrameCallback callback,
45 void* data) {
46 return AChoreographer_routePostExtendedFrameCallback(choreographer, callback, data);
47}
Alec Mouricf3ad872020-04-27 22:36:17 -070048void AChoreographer_registerRefreshRateCallback(AChoreographer* choreographer,
49 AChoreographer_refreshRateCallback callback,
50 void* data) {
51 return AChoreographer_routeRegisterRefreshRateCallback(choreographer, callback, data);
52}
53void AChoreographer_unregisterRefreshRateCallback(AChoreographer* choreographer,
54 AChoreographer_refreshRateCallback callback,
55 void* data) {
56 return AChoreographer_routeUnregisterRefreshRateCallback(choreographer, callback, data);
57}
Rachel Lee6350ff02021-09-01 13:30:13 -070058int64_t AChoreographerFrameCallbackData_getFrameTimeNanos(
59 const AChoreographerFrameCallbackData* data) {
60 return AChoreographerFrameCallbackData_routeGetFrameTimeNanos(data);
61}
62size_t AChoreographerFrameCallbackData_getFrameTimelinesLength(
63 const AChoreographerFrameCallbackData* data) {
64 return AChoreographerFrameCallbackData_routeGetFrameTimelinesLength(data);
65}
66size_t AChoreographerFrameCallbackData_getPreferredFrameTimelineIndex(
67 const AChoreographerFrameCallbackData* data) {
68 return AChoreographerFrameCallbackData_routeGetPreferredFrameTimelineIndex(data);
69}
70int64_t AChoreographerFrameCallbackData_getFrameTimelineVsyncId(
71 const AChoreographerFrameCallbackData* data, size_t index) {
72 return AChoreographerFrameCallbackData_routeGetFrameTimelineVsyncId(data, index);
73}
74int64_t AChoreographerFrameCallbackData_getFrameTimelineExpectedPresentTime(
75 const AChoreographerFrameCallbackData* data, size_t index) {
76 return AChoreographerFrameCallbackData_routeGetFrameTimelineExpectedPresentTime(data, index);
77}
78int64_t AChoreographerFrameCallbackData_getFrameTimelineDeadline(
79 const AChoreographerFrameCallbackData* data, size_t index) {
80 return AChoreographerFrameCallbackData_routeGetFrameTimelineDeadline(data, index);
81}