Michael Wright | f5eee40 | 2015-12-07 15:26:38 -0500 | [diff] [blame] | 1 | /* |
| 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 Cordon | 908d008 | 2019-02-20 18:08:02 +0000 | [diff] [blame] | 29 | #include <stdint.h> |
Michael Wright | fb911b2 | 2016-01-26 16:05:54 -0800 | [diff] [blame] | 30 | #include <sys/cdefs.h> |
| 31 | |
Michael Wright | f5eee40 | 2015-12-07 15:26:38 -0500 | [diff] [blame] | 32 | __BEGIN_DECLS |
| 33 | |
| 34 | struct AChoreographer; |
gfan | 7fed43d | 2021-04-06 18:50:06 -0700 | [diff] [blame] | 35 | /** |
| 36 | * Opaque type that provides access to an AChoreographer object. |
| 37 | * |
| 38 | * A pointer can be obtained using {@link AChoreographer_getInstance()}. |
| 39 | */ |
Michael Wright | f5eee40 | 2015-12-07 15:26:38 -0500 | [diff] [blame] | 40 | typedef struct AChoreographer AChoreographer; |
| 41 | |
Rachel Lee | 1fb2ddc | 2022-01-12 14:33:07 -0800 | [diff] [blame] | 42 | |
| 43 | /** |
| 44 | * The identifier of a frame timeline. |
| 45 | */ |
| 46 | typedef int64_t AVsyncId; |
| 47 | |
Rachel Lee | 4879d81 | 2021-08-25 11:50:11 -0700 | [diff] [blame] | 48 | struct AChoreographerFrameCallbackData; |
| 49 | /** |
| 50 | * Opaque type that provides access to an AChoreographerFrameCallbackData object. |
| 51 | */ |
| 52 | typedef struct AChoreographerFrameCallbackData AChoreographerFrameCallbackData; |
| 53 | |
Michael Wright | f5eee40 | 2015-12-07 15:26:38 -0500 | [diff] [blame] | 54 | /** |
| 55 | * Prototype of the function that is called when a new frame is being rendered. |
| 56 | * It's passed the time that the frame is being rendered as nanoseconds in the |
| 57 | * CLOCK_MONOTONIC time base, as well as the data pointer provided by the |
| 58 | * application that registered a callback. All callbacks that run as part of |
| 59 | * rendering a frame will observe the same frame time, so it should be used |
| 60 | * whenever events need to be synchronized (e.g. animations). |
| 61 | */ |
| 62 | typedef void (*AChoreographer_frameCallback)(long frameTimeNanos, void* data); |
| 63 | |
Santos Cordon | 908d008 | 2019-02-20 18:08:02 +0000 | [diff] [blame] | 64 | /** |
| 65 | * Prototype of the function that is called when a new frame is being rendered. |
| 66 | * It's passed the time that the frame is being rendered as nanoseconds in the |
| 67 | * CLOCK_MONOTONIC time base, as well as the data pointer provided by the |
| 68 | * application that registered a callback. All callbacks that run as part of |
| 69 | * rendering a frame will observe the same frame time, so it should be used |
| 70 | * whenever events need to be synchronized (e.g. animations). |
| 71 | */ |
| 72 | typedef void (*AChoreographer_frameCallback64)(int64_t frameTimeNanos, void* data); |
| 73 | |
Alec Mouri | 33682e9 | 2020-01-10 15:11:15 -0800 | [diff] [blame] | 74 | /** |
Rachel Lee | 4879d81 | 2021-08-25 11:50:11 -0700 | [diff] [blame] | 75 | * Prototype of the function that is called when a new frame is being rendered. |
| 76 | * It's passed the frame data that should not outlive the callback, as well as the data pointer |
| 77 | * provided by the application that registered a callback. |
| 78 | */ |
Rachel Lee | f4dc39f | 2022-02-15 18:30:59 -0800 | [diff] [blame] | 79 | typedef void (*AChoreographer_vsyncCallback)( |
Rachel Lee | 4879d81 | 2021-08-25 11:50:11 -0700 | [diff] [blame] | 80 | const AChoreographerFrameCallbackData* callbackData, void* data); |
| 81 | |
| 82 | /** |
Alec Mouri | 33682e9 | 2020-01-10 15:11:15 -0800 | [diff] [blame] | 83 | * Prototype of the function that is called when the display refresh rate |
| 84 | * changes. It's passed the new vsync period in nanoseconds, as well as the data |
| 85 | * pointer provided by the application that registered a callback. |
| 86 | */ |
| 87 | typedef void (*AChoreographer_refreshRateCallback)(int64_t vsyncPeriodNanos, void* data); |
| 88 | |
Michael Wright | f5eee40 | 2015-12-07 15:26:38 -0500 | [diff] [blame] | 89 | /** |
| 90 | * Get the AChoreographer instance for the current thread. This must be called |
| 91 | * on an ALooper thread. |
Elliott Hughes | 3d70e53 | 2019-10-29 08:59:39 -0700 | [diff] [blame] | 92 | * |
| 93 | * Available since API level 24. |
Michael Wright | f5eee40 | 2015-12-07 15:26:38 -0500 | [diff] [blame] | 94 | */ |
Elliott Hughes | 9db409b | 2018-06-18 12:28:46 -0700 | [diff] [blame] | 95 | AChoreographer* AChoreographer_getInstance() __INTRODUCED_IN(24); |
Michael Wright | f5eee40 | 2015-12-07 15:26:38 -0500 | [diff] [blame] | 96 | |
| 97 | /** |
Santos Cordon | 908d008 | 2019-02-20 18:08:02 +0000 | [diff] [blame] | 98 | * Deprecated: Use AChoreographer_postFrameCallback64 instead. |
Michael Wright | f5eee40 | 2015-12-07 15:26:38 -0500 | [diff] [blame] | 99 | */ |
| 100 | void AChoreographer_postFrameCallback(AChoreographer* choreographer, |
Alec Mouri | 271de04 | 2020-04-27 22:38:19 -0700 | [diff] [blame] | 101 | AChoreographer_frameCallback callback, void* data) |
| 102 | __INTRODUCED_IN(24) __DEPRECATED_IN(29); |
Elliott Hughes | 9db409b | 2018-06-18 12:28:46 -0700 | [diff] [blame] | 103 | |
Michael Wright | f5eee40 | 2015-12-07 15:26:38 -0500 | [diff] [blame] | 104 | /** |
Santos Cordon | 908d008 | 2019-02-20 18:08:02 +0000 | [diff] [blame] | 105 | * Deprecated: Use AChoreographer_postFrameCallbackDelayed64 instead. |
Michael Wright | f5eee40 | 2015-12-07 15:26:38 -0500 | [diff] [blame] | 106 | */ |
| 107 | void AChoreographer_postFrameCallbackDelayed(AChoreographer* choreographer, |
Alec Mouri | 271de04 | 2020-04-27 22:38:19 -0700 | [diff] [blame] | 108 | AChoreographer_frameCallback callback, void* data, |
| 109 | long delayMillis) __INTRODUCED_IN(24) |
| 110 | __DEPRECATED_IN(29); |
Dan Albert | 494ed55 | 2016-09-23 15:57:45 -0700 | [diff] [blame] | 111 | |
Santos Cordon | 908d008 | 2019-02-20 18:08:02 +0000 | [diff] [blame] | 112 | /** |
| 113 | * Power a callback to be run on the next frame. The data pointer provided will |
| 114 | * be passed to the callback function when it's called. |
Elliott Hughes | 3d70e53 | 2019-10-29 08:59:39 -0700 | [diff] [blame] | 115 | * |
| 116 | * Available since API level 29. |
Santos Cordon | 908d008 | 2019-02-20 18:08:02 +0000 | [diff] [blame] | 117 | */ |
Dillon Cower | 20e67fa | 2019-07-30 15:39:54 -0700 | [diff] [blame] | 118 | void AChoreographer_postFrameCallback64(AChoreographer* choreographer, |
Alec Mouri | 271de04 | 2020-04-27 22:38:19 -0700 | [diff] [blame] | 119 | AChoreographer_frameCallback64 callback, void* data) |
| 120 | __INTRODUCED_IN(29); |
Santos Cordon | 908d008 | 2019-02-20 18:08:02 +0000 | [diff] [blame] | 121 | |
| 122 | /** |
| 123 | * Post a callback to be run on the frame following the specified delay. The |
| 124 | * data pointer provided will be passed to the callback function when it's |
| 125 | * called. |
Elliott Hughes | 3d70e53 | 2019-10-29 08:59:39 -0700 | [diff] [blame] | 126 | * |
| 127 | * Available since API level 29. |
Santos Cordon | 908d008 | 2019-02-20 18:08:02 +0000 | [diff] [blame] | 128 | */ |
| 129 | void AChoreographer_postFrameCallbackDelayed64(AChoreographer* choreographer, |
Alec Mouri | 271de04 | 2020-04-27 22:38:19 -0700 | [diff] [blame] | 130 | AChoreographer_frameCallback64 callback, void* data, |
| 131 | uint32_t delayMillis) __INTRODUCED_IN(29); |
Santos Cordon | 908d008 | 2019-02-20 18:08:02 +0000 | [diff] [blame] | 132 | |
Alec Mouri | 33682e9 | 2020-01-10 15:11:15 -0800 | [diff] [blame] | 133 | /** |
Rachel Lee | 4879d81 | 2021-08-25 11:50:11 -0700 | [diff] [blame] | 134 | * Posts a callback to run on the next frame. The data pointer provided will |
| 135 | * be passed to the callback function when it's called. |
| 136 | */ |
Rachel Lee | f4dc39f | 2022-02-15 18:30:59 -0800 | [diff] [blame] | 137 | void AChoreographer_postVsyncCallback(AChoreographer* choreographer, |
| 138 | AChoreographer_vsyncCallback callback, void* data) |
Rachel Lee | 4879d81 | 2021-08-25 11:50:11 -0700 | [diff] [blame] | 139 | __INTRODUCED_IN(33); |
| 140 | |
| 141 | /** |
Alec Mouri | 33682e9 | 2020-01-10 15:11:15 -0800 | [diff] [blame] | 142 | * Registers a callback to be run when the display refresh rate changes. The |
| 143 | * data pointer provided will be passed to the callback function when it's |
| 144 | * called. The same callback may be registered multiple times, provided that a |
| 145 | * different data pointer is provided each time. |
| 146 | * |
| 147 | * If an application registers a callback for this choreographer instance when |
| 148 | * no new callbacks were previously registered, that callback is guaranteed to |
| 149 | * be dispatched. However, if the callback and associated data pointer are |
| 150 | * unregistered prior to running the callback, then the callback may be silently |
| 151 | * dropped. |
| 152 | * |
| 153 | * This api is thread-safe. Any thread is allowed to register a new refresh |
| 154 | * rate callback for the choreographer instance. |
Elliott Hughes | 7be0e2d | 2020-06-02 13:05:04 -0700 | [diff] [blame] | 155 | * |
Alec Mouri | 4a33165 | 2020-07-20 22:05:24 +0000 | [diff] [blame] | 156 | * Note that in API level 30, this api is not guaranteed to be atomic with |
| 157 | * DisplayManager. That is, calling Display#getRefreshRate very soon after |
| 158 | * a refresh rate callback is invoked may return a stale refresh rate. If any |
| 159 | * Display properties would be required by this callback, then it is recommended |
| 160 | * to listen directly to DisplayManager.DisplayListener#onDisplayChanged events |
| 161 | * instead. |
| 162 | * |
Alec Mouri | 7015fa9 | 2021-02-11 19:31:44 +0000 | [diff] [blame] | 163 | * As of API level 31, this api is guaranteed to have a consistent view with DisplayManager; |
| 164 | * Display#getRefreshRate is guaranteed to not return a stale refresh rate when invoked from this |
| 165 | * callback. |
| 166 | * |
Elliott Hughes | 7be0e2d | 2020-06-02 13:05:04 -0700 | [diff] [blame] | 167 | * Available since API level 30. |
Alec Mouri | 33682e9 | 2020-01-10 15:11:15 -0800 | [diff] [blame] | 168 | */ |
| 169 | void AChoreographer_registerRefreshRateCallback(AChoreographer* choreographer, |
Elliott Hughes | 7be0e2d | 2020-06-02 13:05:04 -0700 | [diff] [blame] | 170 | AChoreographer_refreshRateCallback, void* data) |
| 171 | __INTRODUCED_IN(30); |
Alec Mouri | 33682e9 | 2020-01-10 15:11:15 -0800 | [diff] [blame] | 172 | |
| 173 | /** |
| 174 | * Unregisters a callback to be run when the display refresh rate changes, along |
| 175 | * with the data pointer previously provided when registering the callback. The |
| 176 | * callback is only unregistered when the data pointer matches one that was |
| 177 | * previously registered. |
| 178 | * |
| 179 | * This api is thread-safe. Any thread is allowed to unregister an existing |
| 180 | * refresh rate callback for the choreographer instance. When a refresh rate |
| 181 | * callback and associated data pointer are unregistered, then there is a |
| 182 | * guarantee that when the unregistration completes that that callback will not |
| 183 | * be run with the data pointer passed. |
Elliott Hughes | 7be0e2d | 2020-06-02 13:05:04 -0700 | [diff] [blame] | 184 | * |
| 185 | * Available since API level 30. |
Alec Mouri | 33682e9 | 2020-01-10 15:11:15 -0800 | [diff] [blame] | 186 | */ |
| 187 | void AChoreographer_unregisterRefreshRateCallback(AChoreographer* choreographer, |
Elliott Hughes | 7be0e2d | 2020-06-02 13:05:04 -0700 | [diff] [blame] | 188 | AChoreographer_refreshRateCallback, void* data) |
| 189 | __INTRODUCED_IN(30); |
Alec Mouri | 33682e9 | 2020-01-10 15:11:15 -0800 | [diff] [blame] | 190 | |
Rachel Lee | 4879d81 | 2021-08-25 11:50:11 -0700 | [diff] [blame] | 191 | /** |
| 192 | * The time in nanoseconds when the frame started being rendered. |
| 193 | */ |
| 194 | int64_t AChoreographerFrameCallbackData_getFrameTimeNanos( |
| 195 | const AChoreographerFrameCallbackData* data) __INTRODUCED_IN(33); |
| 196 | |
| 197 | /** |
| 198 | * The number of possible frame timelines. |
| 199 | */ |
| 200 | size_t AChoreographerFrameCallbackData_getFrameTimelinesLength( |
| 201 | const AChoreographerFrameCallbackData* data) __INTRODUCED_IN(33); |
| 202 | |
| 203 | /** |
| 204 | * Get index of the platform-preferred FrameTimeline. |
| 205 | */ |
| 206 | size_t AChoreographerFrameCallbackData_getPreferredFrameTimelineIndex( |
| 207 | const AChoreographerFrameCallbackData* data) __INTRODUCED_IN(33); |
| 208 | |
| 209 | /** |
| 210 | * The vsync ID token used to map Choreographer data. |
| 211 | */ |
Rachel Lee | 1fb2ddc | 2022-01-12 14:33:07 -0800 | [diff] [blame] | 212 | AVsyncId AChoreographerFrameCallbackData_getFrameTimelineVsyncId( |
Rachel Lee | 4879d81 | 2021-08-25 11:50:11 -0700 | [diff] [blame] | 213 | const AChoreographerFrameCallbackData* data, size_t index) __INTRODUCED_IN(33); |
| 214 | |
| 215 | /** |
| 216 | * The time in nanoseconds which the frame at given index is expected to be presented. |
| 217 | */ |
Rachel Lee | f4dc39f | 2022-02-15 18:30:59 -0800 | [diff] [blame] | 218 | int64_t AChoreographerFrameCallbackData_getFrameTimelineExpectedPresentationTimeNanos( |
Rachel Lee | 4879d81 | 2021-08-25 11:50:11 -0700 | [diff] [blame] | 219 | const AChoreographerFrameCallbackData* data, size_t index) __INTRODUCED_IN(33); |
| 220 | |
| 221 | /** |
| 222 | * The time in nanoseconds which the frame at given index needs to be ready by. |
| 223 | */ |
Rachel Lee | 2825fa2 | 2022-01-12 17:35:16 -0800 | [diff] [blame] | 224 | int64_t AChoreographerFrameCallbackData_getFrameTimelineDeadlineNanos( |
Rachel Lee | 4879d81 | 2021-08-25 11:50:11 -0700 | [diff] [blame] | 225 | const AChoreographerFrameCallbackData* data, size_t index) __INTRODUCED_IN(33); |
| 226 | |
Michael Wright | f5eee40 | 2015-12-07 15:26:38 -0500 | [diff] [blame] | 227 | __END_DECLS |
| 228 | |
| 229 | #endif // ANDROID_CHOREOGRAPHER_H |
| 230 | |
| 231 | /** @} */ |