1/*
2 * Copyright (C) 2011 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#ifndef SYSTEM_CORE_INCLUDE_ANDROID_WINDOW_H
18#define SYSTEM_CORE_INCLUDE_ANDROID_WINDOW_H
19
20#include <cutils/native_handle.h>
21#include <errno.h>
22#include <limits.h>
23#include <stdint.h>
24#include <string.h>
25#include <sys/cdefs.h>
26#include <system/graphics.h>
27#include <unistd.h>
28#include <stdbool.h>
29
30#ifndef __UNUSED
31#define __UNUSED __attribute__((__unused__))
32#endif
33#ifndef __deprecated
34#define __deprecated __attribute__((__deprecated__))
35#endif
36
37__BEGIN_DECLS
38
39/*****************************************************************************/
40
41#define ANDROID_NATIVE_MAKE_CONSTANT(a,b,c,d) \
42    (((unsigned)(a)<<24)|((unsigned)(b)<<16)|((unsigned)(c)<<8)|(unsigned)(d))
43
44#define ANDROID_NATIVE_WINDOW_MAGIC \
45    ANDROID_NATIVE_MAKE_CONSTANT('_','w','n','d')
46
47#define ANDROID_NATIVE_BUFFER_MAGIC \
48    ANDROID_NATIVE_MAKE_CONSTANT('_','b','f','r')
49
50// ---------------------------------------------------------------------------
51
52// This #define may be used to conditionally compile device-specific code to
53// support either the prior ANativeWindow interface, which did not pass libsync
54// fences around, or the new interface that does.  This #define is only present
55// when the ANativeWindow interface does include libsync support.
56#define ANDROID_NATIVE_WINDOW_HAS_SYNC 1
57
58// ---------------------------------------------------------------------------
59
60typedef const native_handle_t* buffer_handle_t;
61
62// ---------------------------------------------------------------------------
63
64typedef struct android_native_rect_t
65{
66    int32_t left;
67    int32_t top;
68    int32_t right;
69    int32_t bottom;
70} android_native_rect_t;
71
72// ---------------------------------------------------------------------------
73
74typedef struct android_native_base_t
75{
76    /* a magic value defined by the actual EGL native type */
77    int magic;
78
79    /* the sizeof() of the actual EGL native type */
80    int version;
81
82    void* reserved[4];
83
84    /* reference-counting interface */
85    void (*incRef)(struct android_native_base_t* base);
86    void (*decRef)(struct android_native_base_t* base);
87} android_native_base_t;
88
89typedef struct ANativeWindowBuffer
90{
91#ifdef __cplusplus
92    ANativeWindowBuffer() {
93        common.magic = ANDROID_NATIVE_BUFFER_MAGIC;
94        common.version = sizeof(ANativeWindowBuffer);
95        memset(common.reserved, 0, sizeof(common.reserved));
96    }
97
98    // Implement the methods that sp<ANativeWindowBuffer> expects so that it
99    // can be used to automatically refcount ANativeWindowBuffer's.
100    void incStrong(const void* /*id*/) const {
101        common.incRef(const_cast<android_native_base_t*>(&common));
102    }
103    void decStrong(const void* /*id*/) const {
104        common.decRef(const_cast<android_native_base_t*>(&common));
105    }
106#endif
107
108    struct android_native_base_t common;
109
110    int width;
111    int height;
112    int stride;
113    int format;
114    int usage;
115
116    void* reserved[2];
117
118    buffer_handle_t handle;
119
120    void* reserved_proc[8];
121} ANativeWindowBuffer_t;
122
123// Old typedef for backwards compatibility.
124typedef ANativeWindowBuffer_t android_native_buffer_t;
125
126// ---------------------------------------------------------------------------
127
128/* attributes queriable with query() */
129enum {
130    NATIVE_WINDOW_WIDTH     = 0,
131    NATIVE_WINDOW_HEIGHT    = 1,
132    NATIVE_WINDOW_FORMAT    = 2,
133
134    /* The minimum number of buffers that must remain un-dequeued after a buffer
135     * has been queued.  This value applies only if set_buffer_count was used to
136     * override the number of buffers and if a buffer has since been queued.
137     * Users of the set_buffer_count ANativeWindow method should query this
138     * value before calling set_buffer_count.  If it is necessary to have N
139     * buffers simultaneously dequeued as part of the steady-state operation,
140     * and this query returns M then N+M buffers should be requested via
141     * native_window_set_buffer_count.
142     *
143     * Note that this value does NOT apply until a single buffer has been
144     * queued.  In particular this means that it is possible to:
145     *
146     * 1. Query M = min undequeued buffers
147     * 2. Set the buffer count to N + M
148     * 3. Dequeue all N + M buffers
149     * 4. Cancel M buffers
150     * 5. Queue, dequeue, queue, dequeue, ad infinitum
151     */
152    NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS = 3,
153
154    /* Check whether queueBuffer operations on the ANativeWindow send the buffer
155     * to the window compositor.  The query sets the returned 'value' argument
156     * to 1 if the ANativeWindow DOES send queued buffers directly to the window
157     * compositor and 0 if the buffers do not go directly to the window
158     * compositor.
159     *
160     * This can be used to determine whether protected buffer content should be
161     * sent to the ANativeWindow.  Note, however, that a result of 1 does NOT
162     * indicate that queued buffers will be protected from applications or users
163     * capturing their contents.  If that behavior is desired then some other
164     * mechanism (e.g. the GRALLOC_USAGE_PROTECTED flag) should be used in
165     * conjunction with this query.
166     */
167    NATIVE_WINDOW_QUEUES_TO_WINDOW_COMPOSER = 4,
168
169    /* Get the concrete type of a ANativeWindow.  See below for the list of
170     * possible return values.
171     *
172     * This query should not be used outside the Android framework and will
173     * likely be removed in the near future.
174     */
175    NATIVE_WINDOW_CONCRETE_TYPE = 5,
176
177
178    /*
179     * Default width and height of ANativeWindow buffers, these are the
180     * dimensions of the window buffers irrespective of the
181     * NATIVE_WINDOW_SET_BUFFERS_DIMENSIONS call and match the native window
182     * size unless overridden by NATIVE_WINDOW_SET_BUFFERS_USER_DIMENSIONS.
183     */
184    NATIVE_WINDOW_DEFAULT_WIDTH = 6,
185    NATIVE_WINDOW_DEFAULT_HEIGHT = 7,
186
187    /*
188     * transformation that will most-likely be applied to buffers. This is only
189     * a hint, the actual transformation applied might be different.
190     *
191     * INTENDED USE:
192     *
193     * The transform hint can be used by a producer, for instance the GLES
194     * driver, to pre-rotate the rendering such that the final transformation
195     * in the composer is identity. This can be very useful when used in
196     * conjunction with the h/w composer HAL, in situations where it
197     * cannot handle arbitrary rotations.
198     *
199     * 1. Before dequeuing a buffer, the GL driver (or any other ANW client)
200     *    queries the ANW for NATIVE_WINDOW_TRANSFORM_HINT.
201     *
202     * 2. The GL driver overrides the width and height of the ANW to
203     *    account for NATIVE_WINDOW_TRANSFORM_HINT. This is done by querying
204     *    NATIVE_WINDOW_DEFAULT_{WIDTH | HEIGHT}, swapping the dimensions
205     *    according to NATIVE_WINDOW_TRANSFORM_HINT and calling
206     *    native_window_set_buffers_dimensions().
207     *
208     * 3. The GL driver dequeues a buffer of the new pre-rotated size.
209     *
210     * 4. The GL driver renders to the buffer such that the image is
211     *    already transformed, that is applying NATIVE_WINDOW_TRANSFORM_HINT
212     *    to the rendering.
213     *
214     * 5. The GL driver calls native_window_set_transform to apply
215     *    inverse transformation to the buffer it just rendered.
216     *    In order to do this, the GL driver needs
217     *    to calculate the inverse of NATIVE_WINDOW_TRANSFORM_HINT, this is
218     *    done easily:
219     *
220     *        int hintTransform, inverseTransform;
221     *        query(..., NATIVE_WINDOW_TRANSFORM_HINT, &hintTransform);
222     *        inverseTransform = hintTransform;
223     *        if (hintTransform & HAL_TRANSFORM_ROT_90)
224     *            inverseTransform ^= HAL_TRANSFORM_ROT_180;
225     *
226     *
227     * 6. The GL driver queues the pre-transformed buffer.
228     *
229     * 7. The composer combines the buffer transform with the display
230     *    transform.  If the buffer transform happens to cancel out the
231     *    display transform then no rotation is needed.
232     *
233     */
234    NATIVE_WINDOW_TRANSFORM_HINT = 8,
235
236    /*
237     * Boolean that indicates whether the consumer is running more than
238     * one buffer behind the producer.
239     */
240    NATIVE_WINDOW_CONSUMER_RUNNING_BEHIND = 9,
241
242    /*
243     * The consumer gralloc usage bits currently set by the consumer.
244     * The values are defined in hardware/libhardware/include/gralloc.h.
245     */
246    NATIVE_WINDOW_CONSUMER_USAGE_BITS = 10,
247
248    /**
249     * Transformation that will by applied to buffers by the hwcomposer.
250     * This must not be set or checked by producer endpoints, and will
251     * disable the transform hint set in SurfaceFlinger (see
252     * NATIVE_WINDOW_TRANSFORM_HINT).
253     *
254     * INTENDED USE:
255     * Temporary - Please do not use this.  This is intended only to be used
256     * by the camera's LEGACY mode.
257     *
258     * In situations where a SurfaceFlinger client wishes to set a transform
259     * that is not visible to the producer, and will always be applied in the
260     * hardware composer, the client can set this flag with
261     * native_window_set_buffers_sticky_transform.  This can be used to rotate
262     * and flip buffers consumed by hardware composer without actually changing
263     * the aspect ratio of the buffers produced.
264     */
265    NATIVE_WINDOW_STICKY_TRANSFORM = 11,
266
267    /**
268     * The default data space for the buffers as set by the consumer.
269     * The values are defined in graphics.h.
270     */
271    NATIVE_WINDOW_DEFAULT_DATASPACE = 12,
272
273    /*
274     * Returns the age of the contents of the most recently dequeued buffer as
275     * the number of frames that have elapsed since it was last queued. For
276     * example, if the window is double-buffered, the age of any given buffer in
277     * steady state will be 2. If the dequeued buffer has never been queued, its
278     * age will be 0.
279     */
280    NATIVE_WINDOW_BUFFER_AGE = 13,
281};
282
283/* Valid operations for the (*perform)() hook.
284 *
285 * Values marked as 'deprecated' are supported, but have been superceded by
286 * other functionality.
287 *
288 * Values marked as 'private' should be considered private to the framework.
289 * HAL implementation code with access to an ANativeWindow should not use these,
290 * as it may not interact properly with the framework's use of the
291 * ANativeWindow.
292 */
293enum {
294    NATIVE_WINDOW_SET_USAGE                 =  0,
295    NATIVE_WINDOW_CONNECT                   =  1,   /* deprecated */
296    NATIVE_WINDOW_DISCONNECT                =  2,   /* deprecated */
297    NATIVE_WINDOW_SET_CROP                  =  3,   /* private */
298    NATIVE_WINDOW_SET_BUFFER_COUNT          =  4,
299    NATIVE_WINDOW_SET_BUFFERS_GEOMETRY      =  5,   /* deprecated */
300    NATIVE_WINDOW_SET_BUFFERS_TRANSFORM     =  6,
301    NATIVE_WINDOW_SET_BUFFERS_TIMESTAMP     =  7,
302    NATIVE_WINDOW_SET_BUFFERS_DIMENSIONS    =  8,
303    NATIVE_WINDOW_SET_BUFFERS_FORMAT        =  9,
304    NATIVE_WINDOW_SET_SCALING_MODE          = 10,   /* private */
305    NATIVE_WINDOW_LOCK                      = 11,   /* private */
306    NATIVE_WINDOW_UNLOCK_AND_POST           = 12,   /* private */
307    NATIVE_WINDOW_API_CONNECT               = 13,   /* private */
308    NATIVE_WINDOW_API_DISCONNECT            = 14,   /* private */
309    NATIVE_WINDOW_SET_BUFFERS_USER_DIMENSIONS = 15, /* private */
310    NATIVE_WINDOW_SET_POST_TRANSFORM_CROP   = 16,   /* private */
311    NATIVE_WINDOW_SET_BUFFERS_STICKY_TRANSFORM = 17,/* private */
312    NATIVE_WINDOW_SET_SIDEBAND_STREAM       = 18,
313    NATIVE_WINDOW_SET_BUFFERS_DATASPACE     = 19,
314    NATIVE_WINDOW_SET_SURFACE_DAMAGE        = 20,   /* private */
315    NATIVE_WINDOW_SET_SHARED_BUFFER_MODE    = 21,
316    NATIVE_WINDOW_SET_AUTO_REFRESH          = 22,
317};
318
319/* parameter for NATIVE_WINDOW_[API_][DIS]CONNECT */
320enum {
321    /* Buffers will be queued by EGL via eglSwapBuffers after being filled using
322     * OpenGL ES.
323     */
324    NATIVE_WINDOW_API_EGL = 1,
325
326    /* Buffers will be queued after being filled using the CPU
327     */
328    NATIVE_WINDOW_API_CPU = 2,
329
330    /* Buffers will be queued by Stagefright after being filled by a video
331     * decoder.  The video decoder can either be a software or hardware decoder.
332     */
333    NATIVE_WINDOW_API_MEDIA = 3,
334
335    /* Buffers will be queued by the the camera HAL.
336     */
337    NATIVE_WINDOW_API_CAMERA = 4,
338};
339
340/* parameter for NATIVE_WINDOW_SET_BUFFERS_TRANSFORM */
341enum {
342    /* flip source image horizontally */
343    NATIVE_WINDOW_TRANSFORM_FLIP_H = HAL_TRANSFORM_FLIP_H ,
344    /* flip source image vertically */
345    NATIVE_WINDOW_TRANSFORM_FLIP_V = HAL_TRANSFORM_FLIP_V,
346    /* rotate source image 90 degrees clock-wise, and is applied after TRANSFORM_FLIP_{H|V} */
347    NATIVE_WINDOW_TRANSFORM_ROT_90 = HAL_TRANSFORM_ROT_90,
348    /* rotate source image 180 degrees */
349    NATIVE_WINDOW_TRANSFORM_ROT_180 = HAL_TRANSFORM_ROT_180,
350    /* rotate source image 270 degrees clock-wise */
351    NATIVE_WINDOW_TRANSFORM_ROT_270 = HAL_TRANSFORM_ROT_270,
352    /* transforms source by the inverse transform of the screen it is displayed onto. This
353     * transform is applied last */
354    NATIVE_WINDOW_TRANSFORM_INVERSE_DISPLAY = 0x08
355};
356
357/* parameter for NATIVE_WINDOW_SET_SCALING_MODE
358 * keep in sync with Surface.java in frameworks/base */
359enum {
360    /* the window content is not updated (frozen) until a buffer of
361     * the window size is received (enqueued)
362     */
363    NATIVE_WINDOW_SCALING_MODE_FREEZE           = 0,
364    /* the buffer is scaled in both dimensions to match the window size */
365    NATIVE_WINDOW_SCALING_MODE_SCALE_TO_WINDOW  = 1,
366    /* the buffer is scaled uniformly such that the smaller dimension
367     * of the buffer matches the window size (cropping in the process)
368     */
369    NATIVE_WINDOW_SCALING_MODE_SCALE_CROP       = 2,
370    /* the window is clipped to the size of the buffer's crop rectangle; pixels
371     * outside the crop rectangle are treated as if they are completely
372     * transparent.
373     */
374    NATIVE_WINDOW_SCALING_MODE_NO_SCALE_CROP    = 3,
375};
376
377/* values returned by the NATIVE_WINDOW_CONCRETE_TYPE query */
378enum {
379    NATIVE_WINDOW_FRAMEBUFFER               = 0, /* FramebufferNativeWindow */
380    NATIVE_WINDOW_SURFACE                   = 1, /* Surface */
381};
382
383/* parameter for NATIVE_WINDOW_SET_BUFFERS_TIMESTAMP
384 *
385 * Special timestamp value to indicate that timestamps should be auto-generated
386 * by the native window when queueBuffer is called.  This is equal to INT64_MIN,
387 * defined directly to avoid problems with C99/C++ inclusion of stdint.h.
388 */
389static const int64_t NATIVE_WINDOW_TIMESTAMP_AUTO = (-9223372036854775807LL-1);
390
391struct ANativeWindow
392{
393#ifdef __cplusplus
394    ANativeWindow()
395        : flags(0), minSwapInterval(0), maxSwapInterval(0), xdpi(0), ydpi(0)
396    {
397        common.magic = ANDROID_NATIVE_WINDOW_MAGIC;
398        common.version = sizeof(ANativeWindow);
399        memset(common.reserved, 0, sizeof(common.reserved));
400    }
401
402    /* Implement the methods that sp<ANativeWindow> expects so that it
403       can be used to automatically refcount ANativeWindow's. */
404    void incStrong(const void* /*id*/) const {
405        common.incRef(const_cast<android_native_base_t*>(&common));
406    }
407    void decStrong(const void* /*id*/) const {
408        common.decRef(const_cast<android_native_base_t*>(&common));
409    }
410#endif
411
412    struct android_native_base_t common;
413
414    /* flags describing some attributes of this surface or its updater */
415    const uint32_t flags;
416
417    /* min swap interval supported by this updated */
418    const int   minSwapInterval;
419
420    /* max swap interval supported by this updated */
421    const int   maxSwapInterval;
422
423    /* horizontal and vertical resolution in DPI */
424    const float xdpi;
425    const float ydpi;
426
427    /* Some storage reserved for the OEM's driver. */
428    intptr_t    oem[4];
429
430    /*
431     * Set the swap interval for this surface.
432     *
433     * Returns 0 on success or -errno on error.
434     */
435    int     (*setSwapInterval)(struct ANativeWindow* window,
436                int interval);
437
438    /*
439     * Hook called by EGL to acquire a buffer. After this call, the buffer
440     * is not locked, so its content cannot be modified. This call may block if
441     * no buffers are available.
442     *
443     * The window holds a reference to the buffer between dequeueBuffer and
444     * either queueBuffer or cancelBuffer, so clients only need their own
445     * reference if they might use the buffer after queueing or canceling it.
446     * Holding a reference to a buffer after queueing or canceling it is only
447     * allowed if a specific buffer count has been set.
448     *
449     * Returns 0 on success or -errno on error.
450     *
451     * XXX: This function is deprecated.  It will continue to work for some
452     * time for binary compatibility, but the new dequeueBuffer function that
453     * outputs a fence file descriptor should be used in its place.
454     */
455    int     (*dequeueBuffer_DEPRECATED)(struct ANativeWindow* window,
456                struct ANativeWindowBuffer** buffer);
457
458    /*
459     * hook called by EGL to lock a buffer. This MUST be called before modifying
460     * the content of a buffer. The buffer must have been acquired with
461     * dequeueBuffer first.
462     *
463     * Returns 0 on success or -errno on error.
464     *
465     * XXX: This function is deprecated.  It will continue to work for some
466     * time for binary compatibility, but it is essentially a no-op, and calls
467     * to it should be removed.
468     */
469    int     (*lockBuffer_DEPRECATED)(struct ANativeWindow* window,
470                struct ANativeWindowBuffer* buffer);
471
472    /*
473     * Hook called by EGL when modifications to the render buffer are done.
474     * This unlocks and post the buffer.
475     *
476     * The window holds a reference to the buffer between dequeueBuffer and
477     * either queueBuffer or cancelBuffer, so clients only need their own
478     * reference if they might use the buffer after queueing or canceling it.
479     * Holding a reference to a buffer after queueing or canceling it is only
480     * allowed if a specific buffer count has been set.
481     *
482     * Buffers MUST be queued in the same order than they were dequeued.
483     *
484     * Returns 0 on success or -errno on error.
485     *
486     * XXX: This function is deprecated.  It will continue to work for some
487     * time for binary compatibility, but the new queueBuffer function that
488     * takes a fence file descriptor should be used in its place (pass a value
489     * of -1 for the fence file descriptor if there is no valid one to pass).
490     */
491    int     (*queueBuffer_DEPRECATED)(struct ANativeWindow* window,
492                struct ANativeWindowBuffer* buffer);
493
494    /*
495     * hook used to retrieve information about the native window.
496     *
497     * Returns 0 on success or -errno on error.
498     */
499    int     (*query)(const struct ANativeWindow* window,
500                int what, int* value);
501
502    /*
503     * hook used to perform various operations on the surface.
504     * (*perform)() is a generic mechanism to add functionality to
505     * ANativeWindow while keeping backward binary compatibility.
506     *
507     * DO NOT CALL THIS HOOK DIRECTLY.  Instead, use the helper functions
508     * defined below.
509     *
510     * (*perform)() returns -ENOENT if the 'what' parameter is not supported
511     * by the surface's implementation.
512     *
513     * See above for a list of valid operations, such as
514     * NATIVE_WINDOW_SET_USAGE or NATIVE_WINDOW_CONNECT
515     */
516    int     (*perform)(struct ANativeWindow* window,
517                int operation, ... );
518
519    /*
520     * Hook used to cancel a buffer that has been dequeued.
521     * No synchronization is performed between dequeue() and cancel(), so
522     * either external synchronization is needed, or these functions must be
523     * called from the same thread.
524     *
525     * The window holds a reference to the buffer between dequeueBuffer and
526     * either queueBuffer or cancelBuffer, so clients only need their own
527     * reference if they might use the buffer after queueing or canceling it.
528     * Holding a reference to a buffer after queueing or canceling it is only
529     * allowed if a specific buffer count has been set.
530     *
531     * XXX: This function is deprecated.  It will continue to work for some
532     * time for binary compatibility, but the new cancelBuffer function that
533     * takes a fence file descriptor should be used in its place (pass a value
534     * of -1 for the fence file descriptor if there is no valid one to pass).
535     */
536    int     (*cancelBuffer_DEPRECATED)(struct ANativeWindow* window,
537                struct ANativeWindowBuffer* buffer);
538
539    /*
540     * Hook called by EGL to acquire a buffer. This call may block if no
541     * buffers are available.
542     *
543     * The window holds a reference to the buffer between dequeueBuffer and
544     * either queueBuffer or cancelBuffer, so clients only need their own
545     * reference if they might use the buffer after queueing or canceling it.
546     * Holding a reference to a buffer after queueing or canceling it is only
547     * allowed if a specific buffer count has been set.
548     *
549     * The libsync fence file descriptor returned in the int pointed to by the
550     * fenceFd argument will refer to the fence that must signal before the
551     * dequeued buffer may be written to.  A value of -1 indicates that the
552     * caller may access the buffer immediately without waiting on a fence.  If
553     * a valid file descriptor is returned (i.e. any value except -1) then the
554     * caller is responsible for closing the file descriptor.
555     *
556     * Returns 0 on success or -errno on error.
557     */
558    int     (*dequeueBuffer)(struct ANativeWindow* window,
559                struct ANativeWindowBuffer** buffer, int* fenceFd);
560
561    /*
562     * Hook called by EGL when modifications to the render buffer are done.
563     * This unlocks and post the buffer.
564     *
565     * The window holds a reference to the buffer between dequeueBuffer and
566     * either queueBuffer or cancelBuffer, so clients only need their own
567     * reference if they might use the buffer after queueing or canceling it.
568     * Holding a reference to a buffer after queueing or canceling it is only
569     * allowed if a specific buffer count has been set.
570     *
571     * The fenceFd argument specifies a libsync fence file descriptor for a
572     * fence that must signal before the buffer can be accessed.  If the buffer
573     * can be accessed immediately then a value of -1 should be used.  The
574     * caller must not use the file descriptor after it is passed to
575     * queueBuffer, and the ANativeWindow implementation is responsible for
576     * closing it.
577     *
578     * Returns 0 on success or -errno on error.
579     */
580    int     (*queueBuffer)(struct ANativeWindow* window,
581                struct ANativeWindowBuffer* buffer, int fenceFd);
582
583    /*
584     * Hook used to cancel a buffer that has been dequeued.
585     * No synchronization is performed between dequeue() and cancel(), so
586     * either external synchronization is needed, or these functions must be
587     * called from the same thread.
588     *
589     * The window holds a reference to the buffer between dequeueBuffer and
590     * either queueBuffer or cancelBuffer, so clients only need their own
591     * reference if they might use the buffer after queueing or canceling it.
592     * Holding a reference to a buffer after queueing or canceling it is only
593     * allowed if a specific buffer count has been set.
594     *
595     * The fenceFd argument specifies a libsync fence file decsriptor for a
596     * fence that must signal before the buffer can be accessed.  If the buffer
597     * can be accessed immediately then a value of -1 should be used.
598     *
599     * Note that if the client has not waited on the fence that was returned
600     * from dequeueBuffer, that same fence should be passed to cancelBuffer to
601     * ensure that future uses of the buffer are preceded by a wait on that
602     * fence.  The caller must not use the file descriptor after it is passed
603     * to cancelBuffer, and the ANativeWindow implementation is responsible for
604     * closing it.
605     *
606     * Returns 0 on success or -errno on error.
607     */
608    int     (*cancelBuffer)(struct ANativeWindow* window,
609                struct ANativeWindowBuffer* buffer, int fenceFd);
610};
611
612 /* Backwards compatibility: use ANativeWindow (struct ANativeWindow in C).
613  * android_native_window_t is deprecated.
614  */
615typedef struct ANativeWindow ANativeWindow;
616typedef struct ANativeWindow android_native_window_t __deprecated;
617
618/*
619 *  native_window_set_usage(..., usage)
620 *  Sets the intended usage flags for the next buffers
621 *  acquired with (*lockBuffer)() and on.
622 *  By default (if this function is never called), a usage of
623 *      GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_TEXTURE
624 *  is assumed.
625 *  Calling this function will usually cause following buffers to be
626 *  reallocated.
627 */
628
629static inline int native_window_set_usage(
630        struct ANativeWindow* window, int usage)
631{
632    return window->perform(window, NATIVE_WINDOW_SET_USAGE, usage);
633}
634
635/* deprecated. Always returns 0. Don't call. */
636static inline int native_window_connect(
637        struct ANativeWindow* window __UNUSED, int api __UNUSED) __deprecated;
638
639static inline int native_window_connect(
640        struct ANativeWindow* window __UNUSED, int api __UNUSED) {
641    return 0;
642}
643
644/* deprecated. Always returns 0. Don't call. */
645static inline int native_window_disconnect(
646        struct ANativeWindow* window __UNUSED, int api __UNUSED) __deprecated;
647
648static inline int native_window_disconnect(
649        struct ANativeWindow* window __UNUSED, int api __UNUSED) {
650    return 0;
651}
652
653/*
654 * native_window_set_crop(..., crop)
655 * Sets which region of the next queued buffers needs to be considered.
656 * Depending on the scaling mode, a buffer's crop region is scaled and/or
657 * cropped to match the surface's size.  This function sets the crop in
658 * pre-transformed buffer pixel coordinates.
659 *
660 * The specified crop region applies to all buffers queued after it is called.
661 *
662 * If 'crop' is NULL, subsequently queued buffers won't be cropped.
663 *
664 * An error is returned if for instance the crop region is invalid, out of the
665 * buffer's bound or if the window is invalid.
666 */
667static inline int native_window_set_crop(
668        struct ANativeWindow* window,
669        android_native_rect_t const * crop)
670{
671    return window->perform(window, NATIVE_WINDOW_SET_CROP, crop);
672}
673
674/*
675 * native_window_set_post_transform_crop(..., crop)
676 * Sets which region of the next queued buffers needs to be considered.
677 * Depending on the scaling mode, a buffer's crop region is scaled and/or
678 * cropped to match the surface's size.  This function sets the crop in
679 * post-transformed pixel coordinates.
680 *
681 * The specified crop region applies to all buffers queued after it is called.
682 *
683 * If 'crop' is NULL, subsequently queued buffers won't be cropped.
684 *
685 * An error is returned if for instance the crop region is invalid, out of the
686 * buffer's bound or if the window is invalid.
687 */
688static inline int native_window_set_post_transform_crop(
689        struct ANativeWindow* window,
690        android_native_rect_t const * crop)
691{
692    return window->perform(window, NATIVE_WINDOW_SET_POST_TRANSFORM_CROP, crop);
693}
694
695/*
696 * native_window_set_active_rect(..., active_rect)
697 *
698 * This function is deprecated and will be removed soon.  For now it simply
699 * sets the post-transform crop for compatibility while multi-project commits
700 * get checked.
701 */
702static inline int native_window_set_active_rect(
703        struct ANativeWindow* window,
704        android_native_rect_t const * active_rect) __deprecated;
705
706static inline int native_window_set_active_rect(
707        struct ANativeWindow* window,
708        android_native_rect_t const * active_rect)
709{
710    return native_window_set_post_transform_crop(window, active_rect);
711}
712
713/*
714 * native_window_set_buffer_count(..., count)
715 * Sets the number of buffers associated with this native window.
716 */
717static inline int native_window_set_buffer_count(
718        struct ANativeWindow* window,
719        size_t bufferCount)
720{
721    return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount);
722}
723
724/*
725 * native_window_set_buffers_geometry(..., int w, int h, int format)
726 * All buffers dequeued after this call will have the dimensions and format
727 * specified.  A successful call to this function has the same effect as calling
728 * native_window_set_buffers_size and native_window_set_buffers_format.
729 *
730 * XXX: This function is deprecated.  The native_window_set_buffers_dimensions
731 * and native_window_set_buffers_format functions should be used instead.
732 */
733static inline int native_window_set_buffers_geometry(
734        struct ANativeWindow* window,
735        int w, int h, int format) __deprecated;
736
737static inline int native_window_set_buffers_geometry(
738        struct ANativeWindow* window,
739        int w, int h, int format)
740{
741    return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_GEOMETRY,
742            w, h, format);
743}
744
745/*
746 * native_window_set_buffers_dimensions(..., int w, int h)
747 * All buffers dequeued after this call will have the dimensions specified.
748 * In particular, all buffers will have a fixed-size, independent from the
749 * native-window size. They will be scaled according to the scaling mode
750 * (see native_window_set_scaling_mode) upon window composition.
751 *
752 * If w and h are 0, the normal behavior is restored. That is, dequeued buffers
753 * following this call will be sized to match the window's size.
754 *
755 * Calling this function will reset the window crop to a NULL value, which
756 * disables cropping of the buffers.
757 */
758static inline int native_window_set_buffers_dimensions(
759        struct ANativeWindow* window,
760        int w, int h)
761{
762    return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_DIMENSIONS,
763            w, h);
764}
765
766/*
767 * native_window_set_buffers_user_dimensions(..., int w, int h)
768 *
769 * Sets the user buffer size for the window, which overrides the
770 * window's size.  All buffers dequeued after this call will have the
771 * dimensions specified unless overridden by
772 * native_window_set_buffers_dimensions.  All buffers will have a
773 * fixed-size, independent from the native-window size. They will be
774 * scaled according to the scaling mode (see
775 * native_window_set_scaling_mode) upon window composition.
776 *
777 * If w and h are 0, the normal behavior is restored. That is, the
778 * default buffer size will match the windows's size.
779 *
780 * Calling this function will reset the window crop to a NULL value, which
781 * disables cropping of the buffers.
782 */
783static inline int native_window_set_buffers_user_dimensions(
784        struct ANativeWindow* window,
785        int w, int h)
786{
787    return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_USER_DIMENSIONS,
788            w, h);
789}
790
791/*
792 * native_window_set_buffers_format(..., int format)
793 * All buffers dequeued after this call will have the format specified.
794 *
795 * If the specified format is 0, the default buffer format will be used.
796 */
797static inline int native_window_set_buffers_format(
798        struct ANativeWindow* window,
799        int format)
800{
801    return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_FORMAT, format);
802}
803
804/*
805 * native_window_set_buffers_data_space(..., int dataSpace)
806 * All buffers queued after this call will be associated with the dataSpace
807 * parameter specified.
808 *
809 * dataSpace specifies additional information about the buffer that's dependent
810 * on the buffer format and the endpoints. For example, it can be used to convey
811 * the color space of the image data in the buffer, or it can be used to
812 * indicate that the buffers contain depth measurement data instead of color
813 * images.  The default dataSpace is 0, HAL_DATASPACE_UNKNOWN, unless it has been
814 * overridden by the consumer.
815 */
816static inline int native_window_set_buffers_data_space(
817        struct ANativeWindow* window,
818        android_dataspace_t dataSpace)
819{
820    return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_DATASPACE,
821            dataSpace);
822}
823
824/*
825 * native_window_set_buffers_transform(..., int transform)
826 * All buffers queued after this call will be displayed transformed according
827 * to the transform parameter specified.
828 */
829static inline int native_window_set_buffers_transform(
830        struct ANativeWindow* window,
831        int transform)
832{
833    return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_TRANSFORM,
834            transform);
835}
836
837/*
838 * native_window_set_buffers_sticky_transform(..., int transform)
839 * All buffers queued after this call will be displayed transformed according
840 * to the transform parameter specified applied on top of the regular buffer
841 * transform.  Setting this transform will disable the transform hint.
842 *
843 * Temporary - This is only intended to be used by the LEGACY camera mode, do
844 *   not use this for anything else.
845 */
846static inline int native_window_set_buffers_sticky_transform(
847        struct ANativeWindow* window,
848        int transform)
849{
850    return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_STICKY_TRANSFORM,
851            transform);
852}
853
854/*
855 * native_window_set_buffers_timestamp(..., int64_t timestamp)
856 * All buffers queued after this call will be associated with the timestamp
857 * parameter specified. If the timestamp is set to NATIVE_WINDOW_TIMESTAMP_AUTO
858 * (the default), timestamps will be generated automatically when queueBuffer is
859 * called. The timestamp is measured in nanoseconds, and is normally monotonically
860 * increasing. The timestamp should be unaffected by time-of-day adjustments,
861 * and for a camera should be strictly monotonic but for a media player may be
862 * reset when the position is set.
863 */
864static inline int native_window_set_buffers_timestamp(
865        struct ANativeWindow* window,
866        int64_t timestamp)
867{
868    return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_TIMESTAMP,
869            timestamp);
870}
871
872/*
873 * native_window_set_scaling_mode(..., int mode)
874 * All buffers queued after this call will be associated with the scaling mode
875 * specified.
876 */
877static inline int native_window_set_scaling_mode(
878        struct ANativeWindow* window,
879        int mode)
880{
881    return window->perform(window, NATIVE_WINDOW_SET_SCALING_MODE,
882            mode);
883}
884
885/*
886 * native_window_api_connect(..., int api)
887 * connects an API to this window. only one API can be connected at a time.
888 * Returns -EINVAL if for some reason the window cannot be connected, which
889 * can happen if it's connected to some other API.
890 */
891static inline int native_window_api_connect(
892        struct ANativeWindow* window, int api)
893{
894    return window->perform(window, NATIVE_WINDOW_API_CONNECT, api);
895}
896
897/*
898 * native_window_api_disconnect(..., int api)
899 * disconnect the API from this window.
900 * An error is returned if for instance the window wasn't connected in the
901 * first place.
902 */
903static inline int native_window_api_disconnect(
904        struct ANativeWindow* window, int api)
905{
906    return window->perform(window, NATIVE_WINDOW_API_DISCONNECT, api);
907}
908
909/*
910 * native_window_dequeue_buffer_and_wait(...)
911 * Dequeue a buffer and wait on the fence associated with that buffer.  The
912 * buffer may safely be accessed immediately upon this function returning.  An
913 * error is returned if either of the dequeue or the wait operations fail.
914 */
915static inline int native_window_dequeue_buffer_and_wait(ANativeWindow *anw,
916        struct ANativeWindowBuffer** anb) {
917    return anw->dequeueBuffer_DEPRECATED(anw, anb);
918}
919
920/*
921 * native_window_set_sideband_stream(..., native_handle_t*)
922 * Attach a sideband buffer stream to a native window.
923 */
924static inline int native_window_set_sideband_stream(
925        struct ANativeWindow* window,
926        native_handle_t* sidebandHandle)
927{
928    return window->perform(window, NATIVE_WINDOW_SET_SIDEBAND_STREAM,
929            sidebandHandle);
930}
931
932/*
933 * native_window_set_surface_damage(..., android_native_rect_t* rects, int numRects)
934 * Set the surface damage (i.e., the region of the surface that has changed
935 * since the previous frame). The damage set by this call will be reset (to the
936 * default of full-surface damage) after calling queue, so this must be called
937 * prior to every frame with damage that does not cover the whole surface if the
938 * caller desires downstream consumers to use this optimization.
939 *
940 * The damage region is specified as an array of rectangles, with the important
941 * caveat that the origin of the surface is considered to be the bottom-left
942 * corner, as in OpenGL ES.
943 *
944 * If numRects is set to 0, rects may be NULL, and the surface damage will be
945 * set to the full surface (the same as if this function had not been called for
946 * this frame).
947 */
948static inline int native_window_set_surface_damage(
949        struct ANativeWindow* window,
950        const android_native_rect_t* rects, size_t numRects)
951{
952    return window->perform(window, NATIVE_WINDOW_SET_SURFACE_DAMAGE,
953            rects, numRects);
954}
955
956/*
957 * native_window_set_shared_buffer_mode(..., bool sharedBufferMode)
958 * Enable/disable shared buffer mode
959 */
960static inline int native_window_set_shared_buffer_mode(
961        struct ANativeWindow* window,
962        bool sharedBufferMode)
963{
964    return window->perform(window, NATIVE_WINDOW_SET_SHARED_BUFFER_MODE,
965            sharedBufferMode);
966}
967
968/*
969 * native_window_set_auto_refresh(..., autoRefresh)
970 * Enable/disable auto refresh when in shared buffer mode
971 */
972static inline int native_window_set_auto_refresh(
973        struct ANativeWindow* window,
974        bool autoRefresh)
975{
976    return window->perform(window, NATIVE_WINDOW_SET_AUTO_REFRESH, autoRefresh);
977}
978
979__END_DECLS
980
981#endif /* SYSTEM_CORE_INCLUDE_ANDROID_WINDOW_H */
982