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