blob: 0389e573a28a4a66fd92e39dcb9fa56dbaa5889f [file] [log] [blame]
Michael Wrightf5eee402015-12-07 15:26:38 -05001/*
2 * Copyright (C) 2015 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/**
18 * @addtogroup Choreographer
19 * @{
20 */
21
22/**
23 * @file choreographer.h
24 */
25
26#ifndef ANDROID_CHOREOGRAPHER_H
27#define ANDROID_CHOREOGRAPHER_H
28
Santos Cordon908d0082019-02-20 18:08:02 +000029#include <stdint.h>
Michael Wrightfb911b22016-01-26 16:05:54 -080030#include <sys/cdefs.h>
31
Michael Wrightf5eee402015-12-07 15:26:38 -050032__BEGIN_DECLS
33
34struct AChoreographer;
gfan7fed43d2021-04-06 18:50:06 -070035/**
36 * Opaque type that provides access to an AChoreographer object.
37 *
38 * A pointer can be obtained using {@link AChoreographer_getInstance()}.
39 */
Michael Wrightf5eee402015-12-07 15:26:38 -050040typedef struct AChoreographer AChoreographer;
41
Rachel Lee4879d812021-08-25 11:50:11 -070042struct AChoreographerFrameCallbackData;
43/**
44 * Opaque type that provides access to an AChoreographerFrameCallbackData object.
45 */
46typedef struct AChoreographerFrameCallbackData AChoreographerFrameCallbackData;
47
Michael Wrightf5eee402015-12-07 15:26:38 -050048/**
49 * Prototype of the function that is called when a new frame is being rendered.
50 * It's passed the time that the frame is being rendered as nanoseconds in the
51 * CLOCK_MONOTONIC time base, as well as the data pointer provided by the
52 * application that registered a callback. All callbacks that run as part of
53 * rendering a frame will observe the same frame time, so it should be used
54 * whenever events need to be synchronized (e.g. animations).
55 */
56typedef void (*AChoreographer_frameCallback)(long frameTimeNanos, void* data);
57
Santos Cordon908d0082019-02-20 18:08:02 +000058/**
59 * Prototype of the function that is called when a new frame is being rendered.
60 * It's passed the time that the frame is being rendered as nanoseconds in the
61 * CLOCK_MONOTONIC time base, as well as the data pointer provided by the
62 * application that registered a callback. All callbacks that run as part of
63 * rendering a frame will observe the same frame time, so it should be used
64 * whenever events need to be synchronized (e.g. animations).
65 */
66typedef void (*AChoreographer_frameCallback64)(int64_t frameTimeNanos, void* data);
67
Alec Mouri33682e92020-01-10 15:11:15 -080068/**
Rachel Lee4879d812021-08-25 11:50:11 -070069 * Prototype of the function that is called when a new frame is being rendered.
70 * It's passed the frame data that should not outlive the callback, as well as the data pointer
71 * provided by the application that registered a callback.
72 */
73typedef void (*AChoreographer_extendedFrameCallback)(
74 const AChoreographerFrameCallbackData* callbackData, void* data);
75
76/**
Alec Mouri33682e92020-01-10 15:11:15 -080077 * Prototype of the function that is called when the display refresh rate
78 * changes. It's passed the new vsync period in nanoseconds, as well as the data
79 * pointer provided by the application that registered a callback.
80 */
81typedef void (*AChoreographer_refreshRateCallback)(int64_t vsyncPeriodNanos, void* data);
82
Michael Wrightf5eee402015-12-07 15:26:38 -050083/**
84 * Get the AChoreographer instance for the current thread. This must be called
85 * on an ALooper thread.
Elliott Hughes3d70e532019-10-29 08:59:39 -070086 *
87 * Available since API level 24.
Michael Wrightf5eee402015-12-07 15:26:38 -050088 */
Elliott Hughes9db409b2018-06-18 12:28:46 -070089AChoreographer* AChoreographer_getInstance() __INTRODUCED_IN(24);
Michael Wrightf5eee402015-12-07 15:26:38 -050090
91/**
Santos Cordon908d0082019-02-20 18:08:02 +000092 * Deprecated: Use AChoreographer_postFrameCallback64 instead.
Michael Wrightf5eee402015-12-07 15:26:38 -050093 */
94void AChoreographer_postFrameCallback(AChoreographer* choreographer,
Alec Mouri271de042020-04-27 22:38:19 -070095 AChoreographer_frameCallback callback, void* data)
96 __INTRODUCED_IN(24) __DEPRECATED_IN(29);
Elliott Hughes9db409b2018-06-18 12:28:46 -070097
Michael Wrightf5eee402015-12-07 15:26:38 -050098/**
Santos Cordon908d0082019-02-20 18:08:02 +000099 * Deprecated: Use AChoreographer_postFrameCallbackDelayed64 instead.
Michael Wrightf5eee402015-12-07 15:26:38 -0500100 */
101void AChoreographer_postFrameCallbackDelayed(AChoreographer* choreographer,
Alec Mouri271de042020-04-27 22:38:19 -0700102 AChoreographer_frameCallback callback, void* data,
103 long delayMillis) __INTRODUCED_IN(24)
104 __DEPRECATED_IN(29);
Dan Albert494ed552016-09-23 15:57:45 -0700105
Santos Cordon908d0082019-02-20 18:08:02 +0000106/**
107 * Power a callback to be run on the next frame. The data pointer provided will
108 * be passed to the callback function when it's called.
Elliott Hughes3d70e532019-10-29 08:59:39 -0700109 *
110 * Available since API level 29.
Santos Cordon908d0082019-02-20 18:08:02 +0000111 */
Dillon Cower20e67fa2019-07-30 15:39:54 -0700112void AChoreographer_postFrameCallback64(AChoreographer* choreographer,
Alec Mouri271de042020-04-27 22:38:19 -0700113 AChoreographer_frameCallback64 callback, void* data)
114 __INTRODUCED_IN(29);
Santos Cordon908d0082019-02-20 18:08:02 +0000115
116/**
117 * Post a callback to be run on the frame following the specified delay. The
118 * data pointer provided will be passed to the callback function when it's
119 * called.
Elliott Hughes3d70e532019-10-29 08:59:39 -0700120 *
121 * Available since API level 29.
Santos Cordon908d0082019-02-20 18:08:02 +0000122 */
123void AChoreographer_postFrameCallbackDelayed64(AChoreographer* choreographer,
Alec Mouri271de042020-04-27 22:38:19 -0700124 AChoreographer_frameCallback64 callback, void* data,
125 uint32_t delayMillis) __INTRODUCED_IN(29);
Santos Cordon908d0082019-02-20 18:08:02 +0000126
Alec Mouri33682e92020-01-10 15:11:15 -0800127/**
Rachel Lee4879d812021-08-25 11:50:11 -0700128 * Posts a callback to run on the next frame. The data pointer provided will
129 * be passed to the callback function when it's called.
130 */
131void AChoreographer_postExtendedFrameCallback(AChoreographer* choreographer,
132 AChoreographer_extendedFrameCallback callback, void* data)
133 __INTRODUCED_IN(33);
134
135/**
Alec Mouri33682e92020-01-10 15:11:15 -0800136 * Registers a callback to be run when the display refresh rate changes. The
137 * data pointer provided will be passed to the callback function when it's
138 * called. The same callback may be registered multiple times, provided that a
139 * different data pointer is provided each time.
140 *
141 * If an application registers a callback for this choreographer instance when
142 * no new callbacks were previously registered, that callback is guaranteed to
143 * be dispatched. However, if the callback and associated data pointer are
144 * unregistered prior to running the callback, then the callback may be silently
145 * dropped.
146 *
147 * This api is thread-safe. Any thread is allowed to register a new refresh
148 * rate callback for the choreographer instance.
Elliott Hughes7be0e2d2020-06-02 13:05:04 -0700149 *
Alec Mouri4a331652020-07-20 22:05:24 +0000150 * Note that in API level 30, this api is not guaranteed to be atomic with
151 * DisplayManager. That is, calling Display#getRefreshRate very soon after
152 * a refresh rate callback is invoked may return a stale refresh rate. If any
153 * Display properties would be required by this callback, then it is recommended
154 * to listen directly to DisplayManager.DisplayListener#onDisplayChanged events
155 * instead.
156 *
Alec Mouri7015fa92021-02-11 19:31:44 +0000157 * As of API level 31, this api is guaranteed to have a consistent view with DisplayManager;
158 * Display#getRefreshRate is guaranteed to not return a stale refresh rate when invoked from this
159 * callback.
160 *
Elliott Hughes7be0e2d2020-06-02 13:05:04 -0700161 * Available since API level 30.
Alec Mouri33682e92020-01-10 15:11:15 -0800162 */
163void AChoreographer_registerRefreshRateCallback(AChoreographer* choreographer,
Elliott Hughes7be0e2d2020-06-02 13:05:04 -0700164 AChoreographer_refreshRateCallback, void* data)
165 __INTRODUCED_IN(30);
Alec Mouri33682e92020-01-10 15:11:15 -0800166
167/**
168 * Unregisters a callback to be run when the display refresh rate changes, along
169 * with the data pointer previously provided when registering the callback. The
170 * callback is only unregistered when the data pointer matches one that was
171 * previously registered.
172 *
173 * This api is thread-safe. Any thread is allowed to unregister an existing
174 * refresh rate callback for the choreographer instance. When a refresh rate
175 * callback and associated data pointer are unregistered, then there is a
176 * guarantee that when the unregistration completes that that callback will not
177 * be run with the data pointer passed.
Elliott Hughes7be0e2d2020-06-02 13:05:04 -0700178 *
179 * Available since API level 30.
Alec Mouri33682e92020-01-10 15:11:15 -0800180 */
181void AChoreographer_unregisterRefreshRateCallback(AChoreographer* choreographer,
Elliott Hughes7be0e2d2020-06-02 13:05:04 -0700182 AChoreographer_refreshRateCallback, void* data)
183 __INTRODUCED_IN(30);
Alec Mouri33682e92020-01-10 15:11:15 -0800184
Rachel Lee4879d812021-08-25 11:50:11 -0700185/**
186 * The time in nanoseconds when the frame started being rendered.
187 */
188int64_t AChoreographerFrameCallbackData_getFrameTimeNanos(
189 const AChoreographerFrameCallbackData* data) __INTRODUCED_IN(33);
190
191/**
192 * The number of possible frame timelines.
193 */
194size_t AChoreographerFrameCallbackData_getFrameTimelinesLength(
195 const AChoreographerFrameCallbackData* data) __INTRODUCED_IN(33);
196
197/**
198 * Get index of the platform-preferred FrameTimeline.
199 */
200size_t AChoreographerFrameCallbackData_getPreferredFrameTimelineIndex(
201 const AChoreographerFrameCallbackData* data) __INTRODUCED_IN(33);
202
203/**
204 * The vsync ID token used to map Choreographer data.
205 */
206int64_t AChoreographerFrameCallbackData_getFrameTimelineVsyncId(
207 const AChoreographerFrameCallbackData* data, size_t index) __INTRODUCED_IN(33);
208
209/**
210 * The time in nanoseconds which the frame at given index is expected to be presented.
211 */
212int64_t AChoreographerFrameCallbackData_getFrameTimelineExpectedPresentTime(
213 const AChoreographerFrameCallbackData* data, size_t index) __INTRODUCED_IN(33);
214
215/**
216 * The time in nanoseconds which the frame at given index needs to be ready by.
217 */
218int64_t AChoreographerFrameCallbackData_getFrameTimelineDeadline(
219 const AChoreographerFrameCallbackData* data, size_t index) __INTRODUCED_IN(33);
220
Michael Wrightf5eee402015-12-07 15:26:38 -0500221__END_DECLS
222
223#endif // ANDROID_CHOREOGRAPHER_H
224
225/** @} */