1 /*
2 * Copyright (C) 2010 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 #define LOG_TAG "ANativeWindow"
18
19 #include <grallocusage/GrallocUsageConversion.h>
20 // from nativewindow/includes/system/window.h
21 // (not to be confused with the compatibility-only window.h from system/core/includes)
22 #include <system/window.h>
23 #include <android/native_window_aidl.h>
24
25 #include <private/android/AHardwareBufferHelpers.h>
26
27 #include <android/binder_libbinder.h>
28 #include <dlfcn.h>
29 #include <log/log.h>
30 #include <ui/GraphicBuffer.h>
31
32 using namespace android;
33
34 #if defined(__ANDROID_APEX__) || defined(__ANDROID_VNDK__)
35 #error libnativewindow can only be built for system
36 #endif
37
38 using android_view_Surface_writeToParcel = status_t (*)(ANativeWindow* _Nonnull window,
39 Parcel* _Nonnull parcel);
40
41 using android_view_Surface_readFromParcel =
42 status_t (*)(const Parcel* _Nonnull parcel, ANativeWindow* _Nullable* _Nonnull outWindow);
43
44 struct SurfaceParcelables {
45 android_view_Surface_writeToParcel write = nullptr;
46 android_view_Surface_readFromParcel read = nullptr;
47 };
48
getSurfaceParcelFunctions()49 const SurfaceParcelables* getSurfaceParcelFunctions() {
50 static SurfaceParcelables funcs = []() -> SurfaceParcelables {
51 SurfaceParcelables ret;
52 void* dl = dlopen("libgui.so", RTLD_NOW);
53 LOG_ALWAYS_FATAL_IF(!dl, "Failed to find libgui.so");
54 ret.write =
55 (android_view_Surface_writeToParcel)dlsym(dl, "android_view_Surface_writeToParcel");
56 LOG_ALWAYS_FATAL_IF(!ret.write,
57 "libgui.so missing android_view_Surface_writeToParcel; "
58 "loaded wrong libgui?");
59 ret.read =
60 (android_view_Surface_readFromParcel)dlsym(dl,
61 "android_view_Surface_readFromParcel");
62 LOG_ALWAYS_FATAL_IF(!ret.read,
63 "libgui.so missing android_view_Surface_readFromParcel; "
64 "loaded wrong libgui?");
65 return ret;
66 }();
67 return &funcs;
68 }
69
query(ANativeWindow * window,int what)70 static int32_t query(ANativeWindow* window, int what) {
71 int value;
72 int res = window->query(window, what, &value);
73 return res < 0 ? res : value;
74 }
75
query64(ANativeWindow * window,int what)76 static int64_t query64(ANativeWindow* window, int what) {
77 int64_t value;
78 int res = window->perform(window, what, &value);
79 return res < 0 ? res : value;
80 }
81
82 /**************************************************************************************************
83 * NDK
84 **************************************************************************************************/
85
ANativeWindow_acquire(ANativeWindow * window)86 void ANativeWindow_acquire(ANativeWindow* window) {
87 // incStrong/decStrong token must be the same, doesn't matter what it is
88 window->incStrong((void*)ANativeWindow_acquire);
89 }
90
ANativeWindow_release(ANativeWindow * window)91 void ANativeWindow_release(ANativeWindow* window) {
92 // incStrong/decStrong token must be the same, doesn't matter what it is
93 window->decStrong((void*)ANativeWindow_acquire);
94 }
95
ANativeWindow_getWidth(ANativeWindow * window)96 int32_t ANativeWindow_getWidth(ANativeWindow* window) {
97 return query(window, NATIVE_WINDOW_WIDTH);
98 }
99
ANativeWindow_getHeight(ANativeWindow * window)100 int32_t ANativeWindow_getHeight(ANativeWindow* window) {
101 return query(window, NATIVE_WINDOW_HEIGHT);
102 }
103
ANativeWindow_getFormat(ANativeWindow * window)104 int32_t ANativeWindow_getFormat(ANativeWindow* window) {
105 return query(window, NATIVE_WINDOW_FORMAT);
106 }
107
ANativeWindow_setBuffersGeometry(ANativeWindow * window,int32_t width,int32_t height,int32_t format)108 int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window,
109 int32_t width, int32_t height, int32_t format) {
110 int32_t err = native_window_set_buffers_format(window, format);
111 if (!err) {
112 err = native_window_set_buffers_user_dimensions(window, width, height);
113 if (!err) {
114 int mode = NATIVE_WINDOW_SCALING_MODE_FREEZE;
115 if (width && height) {
116 mode = NATIVE_WINDOW_SCALING_MODE_SCALE_TO_WINDOW;
117 }
118 err = native_window_set_scaling_mode(window, mode);
119 }
120 }
121 return err;
122 }
123
ANativeWindow_lock(ANativeWindow * window,ANativeWindow_Buffer * outBuffer,ARect * inOutDirtyBounds)124 int32_t ANativeWindow_lock(ANativeWindow* window, ANativeWindow_Buffer* outBuffer,
125 ARect* inOutDirtyBounds) {
126 return window->perform(window, NATIVE_WINDOW_LOCK, outBuffer, inOutDirtyBounds);
127 }
128
ANativeWindow_unlockAndPost(ANativeWindow * window)129 int32_t ANativeWindow_unlockAndPost(ANativeWindow* window) {
130 return window->perform(window, NATIVE_WINDOW_UNLOCK_AND_POST);
131 }
132
ANativeWindow_setBuffersTransform(ANativeWindow * window,int32_t transform)133 int32_t ANativeWindow_setBuffersTransform(ANativeWindow* window, int32_t transform) {
134 static_assert(ANATIVEWINDOW_TRANSFORM_MIRROR_HORIZONTAL == NATIVE_WINDOW_TRANSFORM_FLIP_H);
135 static_assert(ANATIVEWINDOW_TRANSFORM_MIRROR_VERTICAL == NATIVE_WINDOW_TRANSFORM_FLIP_V);
136 static_assert(ANATIVEWINDOW_TRANSFORM_ROTATE_90 == NATIVE_WINDOW_TRANSFORM_ROT_90);
137
138 constexpr int32_t kAllTransformBits =
139 ANATIVEWINDOW_TRANSFORM_MIRROR_HORIZONTAL |
140 ANATIVEWINDOW_TRANSFORM_MIRROR_VERTICAL |
141 ANATIVEWINDOW_TRANSFORM_ROTATE_90 |
142 // We don't expose INVERSE_DISPLAY as an NDK constant, but someone could have read it
143 // from a buffer already set by Camera framework, so we allow it to be forwarded.
144 NATIVE_WINDOW_TRANSFORM_INVERSE_DISPLAY;
145 if (!window || !query(window, NATIVE_WINDOW_IS_VALID))
146 return -EINVAL;
147 if ((transform & ~kAllTransformBits) != 0)
148 return -EINVAL;
149
150 return native_window_set_buffers_transform(window, transform);
151 }
152
ANativeWindow_setBuffersDataSpace(ANativeWindow * window,int32_t dataSpace)153 int32_t ANativeWindow_setBuffersDataSpace(ANativeWindow* window, int32_t dataSpace) {
154 static_assert(static_cast<int>(ADATASPACE_UNKNOWN) == static_cast<int>(HAL_DATASPACE_UNKNOWN));
155 static_assert(static_cast<int>(STANDARD_MASK) == static_cast<int>(HAL_DATASPACE_STANDARD_MASK));
156 static_assert(static_cast<int>(STANDARD_UNSPECIFIED) == static_cast<int>(HAL_DATASPACE_STANDARD_UNSPECIFIED));
157 static_assert(static_cast<int>(STANDARD_BT709) == static_cast<int>(HAL_DATASPACE_STANDARD_BT709));
158 static_assert(static_cast<int>(STANDARD_BT601_625) == static_cast<int>(HAL_DATASPACE_STANDARD_BT601_625));
159 static_assert(static_cast<int>(STANDARD_BT601_625_UNADJUSTED) == static_cast<int>(HAL_DATASPACE_STANDARD_BT601_625_UNADJUSTED));
160 static_assert(static_cast<int>(STANDARD_BT601_525) == static_cast<int>(HAL_DATASPACE_STANDARD_BT601_525));
161 static_assert(static_cast<int>(STANDARD_BT601_525_UNADJUSTED) == static_cast<int>(HAL_DATASPACE_STANDARD_BT601_525_UNADJUSTED));
162 static_assert(static_cast<int>(STANDARD_BT470M) == static_cast<int>(HAL_DATASPACE_STANDARD_BT470M));
163 static_assert(static_cast<int>(STANDARD_FILM) == static_cast<int>(HAL_DATASPACE_STANDARD_FILM));
164 static_assert(static_cast<int>(STANDARD_DCI_P3) == static_cast<int>(HAL_DATASPACE_STANDARD_DCI_P3));
165 static_assert(static_cast<int>(STANDARD_ADOBE_RGB) == static_cast<int>(HAL_DATASPACE_STANDARD_ADOBE_RGB));
166 static_assert(static_cast<int>(TRANSFER_MASK) == static_cast<int>(HAL_DATASPACE_TRANSFER_MASK));
167 static_assert(static_cast<int>(TRANSFER_UNSPECIFIED) == static_cast<int>(HAL_DATASPACE_TRANSFER_UNSPECIFIED));
168 static_assert(static_cast<int>(TRANSFER_LINEAR) == static_cast<int>(HAL_DATASPACE_TRANSFER_LINEAR));
169 static_assert(static_cast<int>(TRANSFER_SMPTE_170M) == static_cast<int>(HAL_DATASPACE_TRANSFER_SMPTE_170M));
170 static_assert(static_cast<int>(TRANSFER_GAMMA2_2) == static_cast<int>(HAL_DATASPACE_TRANSFER_GAMMA2_2));
171 static_assert(static_cast<int>(TRANSFER_GAMMA2_6) == static_cast<int>(HAL_DATASPACE_TRANSFER_GAMMA2_6));
172 static_assert(static_cast<int>(TRANSFER_GAMMA2_8) == static_cast<int>(HAL_DATASPACE_TRANSFER_GAMMA2_8));
173 static_assert(static_cast<int>(TRANSFER_ST2084) == static_cast<int>(HAL_DATASPACE_TRANSFER_ST2084));
174 static_assert(static_cast<int>(TRANSFER_HLG) == static_cast<int>(HAL_DATASPACE_TRANSFER_HLG));
175 static_assert(static_cast<int>(RANGE_MASK) == static_cast<int>(HAL_DATASPACE_RANGE_MASK));
176 static_assert(static_cast<int>(RANGE_UNSPECIFIED) == static_cast<int>(HAL_DATASPACE_RANGE_UNSPECIFIED));
177 static_assert(static_cast<int>(RANGE_FULL) == static_cast<int>(HAL_DATASPACE_RANGE_FULL));
178 static_assert(static_cast<int>(RANGE_LIMITED) == static_cast<int>(HAL_DATASPACE_RANGE_LIMITED));
179 static_assert(static_cast<int>(RANGE_EXTENDED) == static_cast<int>(HAL_DATASPACE_RANGE_EXTENDED));
180 static_assert(static_cast<int>(ADATASPACE_SRGB) == static_cast<int>(HAL_DATASPACE_V0_SRGB));
181 static_assert(static_cast<int>(ADATASPACE_SCRGB) == static_cast<int>(HAL_DATASPACE_V0_SCRGB));
182 static_assert(static_cast<int>(ADATASPACE_DISPLAY_P3) == static_cast<int>(HAL_DATASPACE_DISPLAY_P3));
183 static_assert(static_cast<int>(ADATASPACE_BT2020_PQ) == static_cast<int>(HAL_DATASPACE_BT2020_PQ));
184 static_assert(static_cast<int>(ADATASPACE_BT2020_ITU_PQ) ==
185 static_cast<int>(HAL_DATASPACE_BT2020_ITU_PQ));
186 static_assert(static_cast<int>(ADATASPACE_ADOBE_RGB) == static_cast<int>(HAL_DATASPACE_ADOBE_RGB));
187 static_assert(static_cast<int>(ADATASPACE_JFIF) == static_cast<int>(HAL_DATASPACE_V0_JFIF));
188 static_assert(static_cast<int>(ADATASPACE_BT601_625) == static_cast<int>(HAL_DATASPACE_V0_BT601_625));
189 static_assert(static_cast<int>(ADATASPACE_BT601_525) == static_cast<int>(HAL_DATASPACE_V0_BT601_525));
190 static_assert(static_cast<int>(ADATASPACE_BT2020) == static_cast<int>(HAL_DATASPACE_BT2020));
191 static_assert(static_cast<int>(ADATASPACE_BT709) == static_cast<int>(HAL_DATASPACE_V0_BT709));
192 static_assert(static_cast<int>(ADATASPACE_DCI_P3) == static_cast<int>(HAL_DATASPACE_DCI_P3));
193 static_assert(static_cast<int>(ADATASPACE_SRGB_LINEAR) == static_cast<int>(HAL_DATASPACE_V0_SRGB_LINEAR));
194 static_assert(static_cast<int>(ADATASPACE_BT2020_HLG) ==
195 static_cast<int>(HAL_DATASPACE_BT2020_HLG));
196 static_assert(static_cast<int>(ADATASPACE_BT2020_ITU_HLG) ==
197 static_cast<int>(HAL_DATASPACE_BT2020_ITU_HLG));
198 static_assert(static_cast<int>(ADATASPACE_DEPTH) == static_cast<int>(HAL_DATASPACE_DEPTH));
199 static_assert(static_cast<int>(ADATASPACE_DYNAMIC_DEPTH) == static_cast<int>(HAL_DATASPACE_DYNAMIC_DEPTH));
200
201 if (!window || !query(window, NATIVE_WINDOW_IS_VALID)) {
202 return -EINVAL;
203 }
204 return native_window_set_buffers_data_space(window,
205 static_cast<android_dataspace_t>(dataSpace));
206 }
207
ANativeWindow_getBuffersDataSpace(ANativeWindow * window)208 int32_t ANativeWindow_getBuffersDataSpace(ANativeWindow* window) {
209 if (!window || !query(window, NATIVE_WINDOW_IS_VALID))
210 return -EINVAL;
211 return query(window, NATIVE_WINDOW_DATASPACE);
212 }
213
ANativeWindow_getBuffersDefaultDataSpace(ANativeWindow * window)214 int32_t ANativeWindow_getBuffersDefaultDataSpace(ANativeWindow* window) {
215 if (!window || !query(window, NATIVE_WINDOW_IS_VALID)) {
216 return -EINVAL;
217 }
218 return query(window, NATIVE_WINDOW_DEFAULT_DATASPACE);
219 }
220
ANativeWindow_setFrameRate(ANativeWindow * window,float frameRate,int8_t compatibility)221 int32_t ANativeWindow_setFrameRate(ANativeWindow* window, float frameRate, int8_t compatibility) {
222 return ANativeWindow_setFrameRateWithChangeStrategy(window, frameRate, compatibility,
223 ANATIVEWINDOW_CHANGE_FRAME_RATE_ONLY_IF_SEAMLESS);
224 }
225
ANativeWindow_tryAllocateBuffers(ANativeWindow * window)226 void ANativeWindow_tryAllocateBuffers(ANativeWindow* window) {
227 if (!window || !query(window, NATIVE_WINDOW_IS_VALID)) {
228 return;
229 }
230 window->perform(window, NATIVE_WINDOW_ALLOCATE_BUFFERS);
231 }
232
ANativeWindow_setFrameRateWithChangeStrategy(ANativeWindow * window,float frameRate,int8_t compatibility,int8_t changeFrameRateStrategy)233 int32_t ANativeWindow_setFrameRateWithChangeStrategy(ANativeWindow* window, float frameRate,
234 int8_t compatibility, int8_t changeFrameRateStrategy) {
235 if (!window || !query(window, NATIVE_WINDOW_IS_VALID)) {
236 return -EINVAL;
237 }
238 return native_window_set_frame_rate(window, frameRate, compatibility, changeFrameRateStrategy);
239 }
240
241 /**************************************************************************************************
242 * vndk-stable
243 **************************************************************************************************/
244
ANativeWindowBuffer_getHardwareBuffer(ANativeWindowBuffer * anwb)245 AHardwareBuffer* ANativeWindowBuffer_getHardwareBuffer(ANativeWindowBuffer* anwb) {
246 return AHardwareBuffer_from_GraphicBuffer(static_cast<GraphicBuffer*>(anwb));
247 }
248
ANativeWindow_OemStorageSet(ANativeWindow * window,uint32_t slot,intptr_t value)249 int ANativeWindow_OemStorageSet(ANativeWindow* window, uint32_t slot, intptr_t value) {
250 if (slot < 4) {
251 window->oem[slot] = value;
252 return 0;
253 }
254 return -EINVAL;
255 }
256
ANativeWindow_OemStorageGet(ANativeWindow * window,uint32_t slot,intptr_t * value)257 int ANativeWindow_OemStorageGet(ANativeWindow* window, uint32_t slot, intptr_t* value) {
258 if (slot >= 4) {
259 *value = window->oem[slot];
260 return 0;
261 }
262 return -EINVAL;
263 }
264
265
ANativeWindow_setSwapInterval(ANativeWindow * window,int interval)266 int ANativeWindow_setSwapInterval(ANativeWindow* window, int interval) {
267 return window->setSwapInterval(window, interval);
268 }
269
ANativeWindow_query(const ANativeWindow * window,ANativeWindowQuery what,int * value)270 int ANativeWindow_query(const ANativeWindow* window, ANativeWindowQuery what, int* value) {
271 switch (what) {
272 case ANATIVEWINDOW_QUERY_MIN_UNDEQUEUED_BUFFERS:
273 case ANATIVEWINDOW_QUERY_DEFAULT_WIDTH:
274 case ANATIVEWINDOW_QUERY_DEFAULT_HEIGHT:
275 case ANATIVEWINDOW_QUERY_TRANSFORM_HINT:
276 case ANATIVEWINDOW_QUERY_BUFFER_AGE:
277 // these are part of the VNDK API
278 break;
279 case ANATIVEWINDOW_QUERY_MIN_SWAP_INTERVAL:
280 *value = window->minSwapInterval;
281 return 0;
282 case ANATIVEWINDOW_QUERY_MAX_SWAP_INTERVAL:
283 *value = window->maxSwapInterval;
284 return 0;
285 case ANATIVEWINDOW_QUERY_XDPI:
286 *value = (int)window->xdpi;
287 return 0;
288 case ANATIVEWINDOW_QUERY_YDPI:
289 *value = (int)window->ydpi;
290 return 0;
291 default:
292 // asked for an invalid query(), one that isn't part of the VNDK
293 return -EINVAL;
294 }
295 return window->query(window, int(what), value);
296 }
297
ANativeWindow_queryf(const ANativeWindow * window,ANativeWindowQuery what,float * value)298 int ANativeWindow_queryf(const ANativeWindow* window, ANativeWindowQuery what, float* value) {
299 switch (what) {
300 case ANATIVEWINDOW_QUERY_XDPI:
301 *value = window->xdpi;
302 return 0;
303 case ANATIVEWINDOW_QUERY_YDPI:
304 *value = window->ydpi;
305 return 0;
306 default:
307 break;
308 }
309
310 int i;
311 int e = ANativeWindow_query(window, what, &i);
312 if (e == 0) {
313 *value = (float)i;
314 }
315 return e;
316 }
317
ANativeWindow_dequeueBuffer(ANativeWindow * window,ANativeWindowBuffer ** buffer,int * fenceFd)318 int ANativeWindow_dequeueBuffer(ANativeWindow* window, ANativeWindowBuffer** buffer, int* fenceFd) {
319 return window->dequeueBuffer(window, buffer, fenceFd);
320 }
321
ANativeWindow_queueBuffer(ANativeWindow * window,ANativeWindowBuffer * buffer,int fenceFd)322 int ANativeWindow_queueBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd) {
323 return window->queueBuffer(window, buffer, fenceFd);
324 }
325
ANativeWindow_cancelBuffer(ANativeWindow * window,ANativeWindowBuffer * buffer,int fenceFd)326 int ANativeWindow_cancelBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd) {
327 return window->cancelBuffer(window, buffer, fenceFd);
328 }
329
ANativeWindow_setUsage(ANativeWindow * window,uint64_t usage)330 int ANativeWindow_setUsage(ANativeWindow* window, uint64_t usage) {
331 return native_window_set_usage(window, usage);
332 }
333
ANativeWindow_setBufferCount(ANativeWindow * window,size_t bufferCount)334 int ANativeWindow_setBufferCount(ANativeWindow* window, size_t bufferCount) {
335 return native_window_set_buffer_count(window, bufferCount);
336 }
337
ANativeWindow_setBuffersDimensions(ANativeWindow * window,uint32_t w,uint32_t h)338 int ANativeWindow_setBuffersDimensions(ANativeWindow* window, uint32_t w, uint32_t h) {
339 return native_window_set_buffers_dimensions(window, (int)w, (int)h);
340 }
341
ANativeWindow_setBuffersFormat(ANativeWindow * window,int format)342 int ANativeWindow_setBuffersFormat(ANativeWindow* window, int format) {
343 return native_window_set_buffers_format(window, format);
344 }
345
ANativeWindow_setBuffersTimestamp(ANativeWindow * window,int64_t timestamp)346 int ANativeWindow_setBuffersTimestamp(ANativeWindow* window, int64_t timestamp) {
347 return native_window_set_buffers_timestamp(window, timestamp);
348 }
349
ANativeWindow_setSharedBufferMode(ANativeWindow * window,bool sharedBufferMode)350 int ANativeWindow_setSharedBufferMode(ANativeWindow* window, bool sharedBufferMode) {
351 return native_window_set_shared_buffer_mode(window, sharedBufferMode);
352 }
353
ANativeWindow_setAutoRefresh(ANativeWindow * window,bool autoRefresh)354 int ANativeWindow_setAutoRefresh(ANativeWindow* window, bool autoRefresh) {
355 return native_window_set_auto_refresh(window, autoRefresh);
356 }
357
ANativeWindow_setAutoPrerotation(ANativeWindow * window,bool autoPrerotation)358 int ANativeWindow_setAutoPrerotation(ANativeWindow* window, bool autoPrerotation) {
359 return native_window_set_auto_prerotation(window, autoPrerotation);
360 }
361
ANativeWindow_readFromParcel(const AParcel * _Nonnull parcel,ANativeWindow * _Nullable * _Nonnull outWindow)362 binder_status_t ANativeWindow_readFromParcel(
363 const AParcel* _Nonnull parcel, ANativeWindow* _Nullable* _Nonnull outWindow) {
364 auto funcs = getSurfaceParcelFunctions();
365 if (funcs->read == nullptr) {
366 ALOGE("Failed to load Surface_readFromParcel implementation");
367 return STATUS_FAILED_TRANSACTION;
368 }
369 const Parcel* nativeParcel = AParcel_viewPlatformParcel(parcel);
370 return funcs->read(nativeParcel, outWindow);
371 }
372
ANativeWindow_writeToParcel(ANativeWindow * _Nonnull window,AParcel * _Nonnull parcel)373 binder_status_t ANativeWindow_writeToParcel(
374 ANativeWindow* _Nonnull window, AParcel* _Nonnull parcel) {
375 auto funcs = getSurfaceParcelFunctions();
376 if (funcs->write == nullptr) {
377 ALOGE("Failed to load Surface_writeToParcel implementation");
378 return STATUS_FAILED_TRANSACTION;
379 }
380 Parcel* nativeParcel = AParcel_viewPlatformParcel(parcel);
381 return funcs->write(window, nativeParcel);
382 }
383
384 /**************************************************************************************************
385 * apex-stable
386 **************************************************************************************************/
387
ANativeWindow_getLastDequeueDuration(ANativeWindow * window)388 int64_t ANativeWindow_getLastDequeueDuration(ANativeWindow* window) {
389 return query64(window, NATIVE_WINDOW_GET_LAST_DEQUEUE_DURATION);
390 }
391
ANativeWindow_getLastQueueDuration(ANativeWindow * window)392 int64_t ANativeWindow_getLastQueueDuration(ANativeWindow* window) {
393 return query64(window, NATIVE_WINDOW_GET_LAST_QUEUE_DURATION);
394 }
395
ANativeWindow_getLastDequeueStartTime(ANativeWindow * window)396 int64_t ANativeWindow_getLastDequeueStartTime(ANativeWindow* window) {
397 return query64(window, NATIVE_WINDOW_GET_LAST_DEQUEUE_START);
398 }
399
ANativeWindow_setDequeueTimeout(ANativeWindow * window,int64_t timeout)400 int ANativeWindow_setDequeueTimeout(ANativeWindow* window, int64_t timeout) {
401 return window->perform(window, NATIVE_WINDOW_SET_DEQUEUE_TIMEOUT, timeout);
402 }
403
ANativeWindow_setCancelBufferInterceptor(ANativeWindow * window,ANativeWindow_cancelBufferInterceptor interceptor,void * data)404 int ANativeWindow_setCancelBufferInterceptor(ANativeWindow* window,
405 ANativeWindow_cancelBufferInterceptor interceptor,
406 void* data) {
407 return window->perform(window, NATIVE_WINDOW_SET_CANCEL_INTERCEPTOR, interceptor, data);
408 }
409
ANativeWindow_setDequeueBufferInterceptor(ANativeWindow * window,ANativeWindow_dequeueBufferInterceptor interceptor,void * data)410 int ANativeWindow_setDequeueBufferInterceptor(ANativeWindow* window,
411 ANativeWindow_dequeueBufferInterceptor interceptor,
412 void* data) {
413 return window->perform(window, NATIVE_WINDOW_SET_DEQUEUE_INTERCEPTOR, interceptor, data);
414 }
415
ANativeWindow_setPerformInterceptor(ANativeWindow * window,ANativeWindow_performInterceptor interceptor,void * data)416 int ANativeWindow_setPerformInterceptor(ANativeWindow* window,
417 ANativeWindow_performInterceptor interceptor, void* data) {
418 return window->perform(window, NATIVE_WINDOW_SET_PERFORM_INTERCEPTOR, interceptor, data);
419 }
420
ANativeWindow_setQueueBufferInterceptor(ANativeWindow * window,ANativeWindow_queueBufferInterceptor interceptor,void * data)421 int ANativeWindow_setQueueBufferInterceptor(ANativeWindow* window,
422 ANativeWindow_queueBufferInterceptor interceptor,
423 void* data) {
424 return window->perform(window, NATIVE_WINDOW_SET_QUEUE_INTERCEPTOR, interceptor, data);
425 }
426