2009-04-10 21:24:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ANDROID_ANDROID_NATIVES_H
|
|
|
|
#define ANDROID_ANDROID_NATIVES_H
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <hardware/gralloc.h>
|
|
|
|
|
2010-06-30 20:56:17 +00:00
|
|
|
#include <android/native_window.h>
|
|
|
|
|
2009-04-10 21:24:30 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
#define ANDROID_NATIVE_MAKE_CONSTANT(a,b,c,d) \
|
|
|
|
(((unsigned)(a)<<24)|((unsigned)(b)<<16)|((unsigned)(c)<<8)|(unsigned)(d))
|
|
|
|
|
|
|
|
#define ANDROID_NATIVE_WINDOW_MAGIC \
|
|
|
|
ANDROID_NATIVE_MAKE_CONSTANT('_','w','n','d')
|
|
|
|
|
|
|
|
#define ANDROID_NATIVE_BUFFER_MAGIC \
|
|
|
|
ANDROID_NATIVE_MAKE_CONSTANT('_','b','f','r')
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
struct android_native_buffer_t;
|
|
|
|
|
2010-04-16 01:48:26 +00:00
|
|
|
typedef struct android_native_rect_t
|
|
|
|
{
|
|
|
|
int32_t left;
|
|
|
|
int32_t top;
|
|
|
|
int32_t right;
|
|
|
|
int32_t bottom;
|
|
|
|
} android_native_rect_t;
|
|
|
|
|
2009-04-10 21:24:30 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2009-08-14 00:57:53 +00:00
|
|
|
typedef struct android_native_base_t
|
2009-04-10 21:24:30 +00:00
|
|
|
{
|
|
|
|
/* a magic value defined by the actual EGL native type */
|
|
|
|
int magic;
|
|
|
|
|
|
|
|
/* the sizeof() of the actual EGL native type */
|
|
|
|
int version;
|
|
|
|
|
|
|
|
void* reserved[4];
|
|
|
|
|
|
|
|
/* reference-counting interface */
|
2009-08-17 19:33:20 +00:00
|
|
|
void (*incRef)(struct android_native_base_t* base);
|
|
|
|
void (*decRef)(struct android_native_base_t* base);
|
2009-08-14 00:57:53 +00:00
|
|
|
} android_native_base_t;
|
2009-04-10 21:24:30 +00:00
|
|
|
|
2009-05-06 01:29:35 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
2009-04-10 21:24:30 +00:00
|
|
|
|
2009-07-31 01:14:56 +00:00
|
|
|
/* attributes queriable with query() */
|
|
|
|
enum {
|
|
|
|
NATIVE_WINDOW_WIDTH = 0,
|
2010-04-16 01:48:26 +00:00
|
|
|
NATIVE_WINDOW_HEIGHT,
|
|
|
|
NATIVE_WINDOW_FORMAT,
|
2011-02-27 22:10:20 +00:00
|
|
|
|
|
|
|
/* The minimum number of buffers that must remain un-dequeued after a buffer
|
|
|
|
* has been queued. This value applies only if set_buffer_count was used to
|
|
|
|
* override the number of buffers and if a buffer has since been queued.
|
|
|
|
* Users of the set_buffer_count ANativeWindow method should query this
|
|
|
|
* value before calling set_buffer_count. If it is necessary to have N
|
|
|
|
* buffers simultaneously dequeued as part of the steady-state operation,
|
|
|
|
* and this query returns M then N+M buffers should be requested via
|
|
|
|
* native_window_set_buffer_count.
|
|
|
|
*
|
|
|
|
* Note that this value does NOT apply until a single buffer has been
|
|
|
|
* queued. In particular this means that it is possible to:
|
|
|
|
*
|
|
|
|
* 1. Query M = min undequeued buffers
|
|
|
|
* 2. Set the buffer count to N + M
|
|
|
|
* 3. Dequeue all N + M buffers
|
|
|
|
* 4. Cancel M buffers
|
|
|
|
* 5. Queue, dequeue, queue, dequeue, ad infinitum
|
|
|
|
*/
|
|
|
|
NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS,
|
2011-03-08 20:18:54 +00:00
|
|
|
|
|
|
|
/* Check whether queueBuffer operations on the ANativeWindow send the buffer
|
|
|
|
* to the window compositor. The query sets the returned 'value' argument
|
|
|
|
* to 1 if the ANativeWindow DOES send queued buffers directly to the window
|
|
|
|
* compositor and 0 if the buffers do not go directly to the window
|
|
|
|
* compositor.
|
|
|
|
*
|
|
|
|
* This can be used to determine whether protected buffer content should be
|
|
|
|
* sent to the ANativeWindow. Note, however, that a result of 1 does NOT
|
|
|
|
* indicate that queued buffers will be protected from applications or users
|
|
|
|
* capturing their contents. If that behavior is desired then some other
|
|
|
|
* mechanism (e.g. the GRALLOC_USAGE_PROTECTED flag) should be used in
|
|
|
|
* conjunction with this query.
|
|
|
|
*/
|
|
|
|
NATIVE_WINDOW_QUEUES_TO_WINDOW_COMPOSER,
|
2011-03-14 22:00:06 +00:00
|
|
|
|
|
|
|
/* Get the concrete type of a ANativeWindow. See below for the list of
|
|
|
|
* possible return values.
|
|
|
|
*
|
|
|
|
* This query should not be used outside the Android framework and will
|
|
|
|
* likely be removed in the near future.
|
|
|
|
*/
|
|
|
|
NATIVE_WINDOW_CONCRETE_TYPE,
|
2009-07-31 01:14:56 +00:00
|
|
|
};
|
|
|
|
|
2009-08-12 05:34:02 +00:00
|
|
|
/* valid operations for the (*perform)() hook */
|
|
|
|
enum {
|
2010-03-11 23:05:52 +00:00
|
|
|
NATIVE_WINDOW_SET_USAGE = 0,
|
2010-04-16 01:48:26 +00:00
|
|
|
NATIVE_WINDOW_CONNECT,
|
|
|
|
NATIVE_WINDOW_DISCONNECT,
|
|
|
|
NATIVE_WINDOW_SET_CROP,
|
2010-05-21 21:19:50 +00:00
|
|
|
NATIVE_WINDOW_SET_BUFFER_COUNT,
|
2010-05-22 00:24:35 +00:00
|
|
|
NATIVE_WINDOW_SET_BUFFERS_GEOMETRY,
|
2010-08-20 00:01:19 +00:00
|
|
|
NATIVE_WINDOW_SET_BUFFERS_TRANSFORM,
|
2010-03-11 23:05:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* parameter for NATIVE_WINDOW_[DIS]CONNECT */
|
|
|
|
enum {
|
|
|
|
NATIVE_WINDOW_API_EGL = 1
|
2009-08-12 05:34:02 +00:00
|
|
|
};
|
|
|
|
|
2010-08-20 00:01:19 +00:00
|
|
|
/* parameter for NATIVE_WINDOW_SET_BUFFERS_TRANSFORM */
|
|
|
|
enum {
|
|
|
|
/* flip source image horizontally */
|
|
|
|
NATIVE_WINDOW_TRANSFORM_FLIP_H = HAL_TRANSFORM_FLIP_H ,
|
|
|
|
/* flip source image vertically */
|
|
|
|
NATIVE_WINDOW_TRANSFORM_FLIP_V = HAL_TRANSFORM_FLIP_V,
|
|
|
|
/* rotate source image 90 degrees clock-wise */
|
|
|
|
NATIVE_WINDOW_TRANSFORM_ROT_90 = HAL_TRANSFORM_ROT_90,
|
|
|
|
/* rotate source image 180 degrees */
|
|
|
|
NATIVE_WINDOW_TRANSFORM_ROT_180 = HAL_TRANSFORM_ROT_180,
|
|
|
|
/* rotate source image 270 degrees clock-wise */
|
|
|
|
NATIVE_WINDOW_TRANSFORM_ROT_270 = HAL_TRANSFORM_ROT_270,
|
|
|
|
};
|
|
|
|
|
2011-03-14 22:00:06 +00:00
|
|
|
/* values returned by the NATIVE_WINDOW_CONCRETE_TYPE query */
|
|
|
|
enum {
|
|
|
|
NATIVE_WINDOW_FRAMEBUFFER, // FramebufferNativeWindow
|
|
|
|
NATIVE_WINDOW_SURFACE, // Surface
|
|
|
|
NATIVE_WINDOW_SURFACE_TEXTURE_CLIENT, // SurfaceTextureClient
|
|
|
|
};
|
|
|
|
|
2010-06-30 20:56:17 +00:00
|
|
|
struct ANativeWindow
|
2009-04-10 21:24:30 +00:00
|
|
|
{
|
|
|
|
#ifdef __cplusplus
|
2010-06-30 20:56:17 +00:00
|
|
|
ANativeWindow()
|
2009-04-10 21:24:30 +00:00
|
|
|
: flags(0), minSwapInterval(0), maxSwapInterval(0), xdpi(0), ydpi(0)
|
|
|
|
{
|
|
|
|
common.magic = ANDROID_NATIVE_WINDOW_MAGIC;
|
2010-06-30 20:56:17 +00:00
|
|
|
common.version = sizeof(ANativeWindow);
|
2009-04-10 21:24:30 +00:00
|
|
|
memset(common.reserved, 0, sizeof(common.reserved));
|
|
|
|
}
|
2010-05-11 00:33:32 +00:00
|
|
|
|
2010-06-30 20:56:17 +00:00
|
|
|
// Implement the methods that sp<ANativeWindow> expects so that it
|
|
|
|
// can be used to automatically refcount ANativeWindow's.
|
2010-05-11 00:33:32 +00:00
|
|
|
void incStrong(const void* id) const {
|
|
|
|
common.incRef(const_cast<android_native_base_t*>(&common));
|
|
|
|
}
|
|
|
|
void decStrong(const void* id) const {
|
|
|
|
common.decRef(const_cast<android_native_base_t*>(&common));
|
|
|
|
}
|
2009-04-10 21:24:30 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
struct android_native_base_t common;
|
|
|
|
|
|
|
|
/* flags describing some attributes of this surface or its updater */
|
|
|
|
const uint32_t flags;
|
|
|
|
|
|
|
|
/* min swap interval supported by this updated */
|
|
|
|
const int minSwapInterval;
|
|
|
|
|
|
|
|
/* max swap interval supported by this updated */
|
|
|
|
const int maxSwapInterval;
|
|
|
|
|
|
|
|
/* horizontal and vertical resolution in DPI */
|
|
|
|
const float xdpi;
|
|
|
|
const float ydpi;
|
|
|
|
|
|
|
|
/* Some storage reserved for the OEM's driver. */
|
|
|
|
intptr_t oem[4];
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the swap interval for this surface.
|
|
|
|
*
|
|
|
|
* Returns 0 on success or -errno on error.
|
|
|
|
*/
|
2010-06-30 20:56:17 +00:00
|
|
|
int (*setSwapInterval)(struct ANativeWindow* window,
|
2009-04-10 21:24:30 +00:00
|
|
|
int interval);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* hook called by EGL to acquire a buffer. After this call, the buffer
|
|
|
|
* is not locked, so its content cannot be modified.
|
2009-05-04 21:17:04 +00:00
|
|
|
* this call may block if no buffers are available.
|
2009-04-10 21:24:30 +00:00
|
|
|
*
|
|
|
|
* Returns 0 on success or -errno on error.
|
|
|
|
*/
|
2010-06-30 20:56:17 +00:00
|
|
|
int (*dequeueBuffer)(struct ANativeWindow* window,
|
2009-04-10 21:24:30 +00:00
|
|
|
struct android_native_buffer_t** buffer);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* hook called by EGL to lock a buffer. This MUST be called before modifying
|
|
|
|
* the content of a buffer. The buffer must have been acquired with
|
|
|
|
* dequeueBuffer first.
|
|
|
|
*
|
|
|
|
* Returns 0 on success or -errno on error.
|
|
|
|
*/
|
2010-06-30 20:56:17 +00:00
|
|
|
int (*lockBuffer)(struct ANativeWindow* window,
|
2009-04-10 21:24:30 +00:00
|
|
|
struct android_native_buffer_t* buffer);
|
|
|
|
/*
|
|
|
|
* hook called by EGL when modifications to the render buffer are done.
|
|
|
|
* This unlocks and post the buffer.
|
|
|
|
*
|
|
|
|
* Buffers MUST be queued in the same order than they were dequeued.
|
|
|
|
*
|
|
|
|
* Returns 0 on success or -errno on error.
|
|
|
|
*/
|
2010-06-30 20:56:17 +00:00
|
|
|
int (*queueBuffer)(struct ANativeWindow* window,
|
2009-04-10 21:24:30 +00:00
|
|
|
struct android_native_buffer_t* buffer);
|
|
|
|
|
2009-07-31 01:14:56 +00:00
|
|
|
/*
|
|
|
|
* hook used to retrieve information about the native window.
|
|
|
|
*
|
|
|
|
* Returns 0 on success or -errno on error.
|
|
|
|
*/
|
2010-06-30 20:56:17 +00:00
|
|
|
int (*query)(struct ANativeWindow* window,
|
2009-08-12 05:34:02 +00:00
|
|
|
int what, int* value);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* hook used to perform various operations on the surface.
|
|
|
|
* (*perform)() is a generic mechanism to add functionality to
|
2010-06-30 20:56:17 +00:00
|
|
|
* ANativeWindow while keeping backward binary compatibility.
|
2009-08-12 05:34:02 +00:00
|
|
|
*
|
|
|
|
* This hook should not be called directly, instead use the helper functions
|
|
|
|
* defined below.
|
|
|
|
*
|
2010-03-11 23:05:52 +00:00
|
|
|
* (*perform)() returns -ENOENT if the 'what' parameter is not supported
|
|
|
|
* by the surface's implementation.
|
|
|
|
*
|
2009-08-12 05:34:02 +00:00
|
|
|
* The valid operations are:
|
|
|
|
* NATIVE_WINDOW_SET_USAGE
|
2010-03-11 23:05:52 +00:00
|
|
|
* NATIVE_WINDOW_CONNECT
|
|
|
|
* NATIVE_WINDOW_DISCONNECT
|
2010-04-16 01:48:26 +00:00
|
|
|
* NATIVE_WINDOW_SET_CROP
|
2010-05-21 21:19:50 +00:00
|
|
|
* NATIVE_WINDOW_SET_BUFFER_COUNT
|
2010-05-22 00:24:35 +00:00
|
|
|
* NATIVE_WINDOW_SET_BUFFERS_GEOMETRY
|
2010-08-20 00:01:19 +00:00
|
|
|
* NATIVE_WINDOW_SET_BUFFERS_TRANSFORM
|
2009-08-12 05:34:02 +00:00
|
|
|
*
|
|
|
|
*/
|
2009-04-10 21:24:30 +00:00
|
|
|
|
2010-06-30 20:56:17 +00:00
|
|
|
int (*perform)(struct ANativeWindow* window,
|
2009-08-12 05:34:02 +00:00
|
|
|
int operation, ... );
|
|
|
|
|
2010-10-01 23:22:41 +00:00
|
|
|
/*
|
|
|
|
* hook used to cancel a buffer that has been dequeued.
|
|
|
|
* No synchronization is performed between dequeue() and cancel(), so
|
|
|
|
* either external synchronization is needed, or these functions must be
|
|
|
|
* called from the same thread.
|
|
|
|
*/
|
|
|
|
int (*cancelBuffer)(struct ANativeWindow* window,
|
|
|
|
struct android_native_buffer_t* buffer);
|
|
|
|
|
|
|
|
|
|
|
|
void* reserved_proc[2];
|
2010-06-30 20:56:17 +00:00
|
|
|
};
|
2009-04-10 21:24:30 +00:00
|
|
|
|
2010-06-30 20:56:17 +00:00
|
|
|
// Backwards compatibility... please switch to ANativeWindow.
|
|
|
|
typedef struct ANativeWindow android_native_window_t;
|
2009-08-12 05:34:02 +00:00
|
|
|
|
|
|
|
/*
|
2010-05-21 21:19:50 +00:00
|
|
|
* native_window_set_usage(..., usage)
|
|
|
|
* Sets the intended usage flags for the next buffers
|
|
|
|
* acquired with (*lockBuffer)() and on.
|
2009-08-12 05:34:02 +00:00
|
|
|
* By default (if this function is never called), a usage of
|
|
|
|
* GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_TEXTURE
|
|
|
|
* is assumed.
|
|
|
|
* Calling this function will usually cause following buffers to be
|
|
|
|
* reallocated.
|
|
|
|
*/
|
|
|
|
|
2009-08-13 23:50:54 +00:00
|
|
|
static inline int native_window_set_usage(
|
2010-06-30 20:56:17 +00:00
|
|
|
ANativeWindow* window, int usage)
|
2009-08-12 05:34:02 +00:00
|
|
|
{
|
|
|
|
return window->perform(window, NATIVE_WINDOW_SET_USAGE, usage);
|
|
|
|
}
|
|
|
|
|
2010-03-11 23:05:52 +00:00
|
|
|
/*
|
2010-05-21 21:19:50 +00:00
|
|
|
* native_window_connect(..., NATIVE_WINDOW_API_EGL)
|
|
|
|
* Must be called by EGL when the window is made current.
|
2010-03-11 23:05:52 +00:00
|
|
|
* Returns -EINVAL if for some reason the window cannot be connected, which
|
|
|
|
* can happen if it's connected to some other API.
|
|
|
|
*/
|
|
|
|
static inline int native_window_connect(
|
2010-06-30 20:56:17 +00:00
|
|
|
ANativeWindow* window, int api)
|
2010-03-11 23:05:52 +00:00
|
|
|
{
|
|
|
|
return window->perform(window, NATIVE_WINDOW_CONNECT, api);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2010-05-21 21:19:50 +00:00
|
|
|
* native_window_disconnect(..., NATIVE_WINDOW_API_EGL)
|
|
|
|
* Must be called by EGL when the window is made not current.
|
2010-03-11 23:05:52 +00:00
|
|
|
* An error is returned if for instance the window wasn't connected in the
|
|
|
|
* first place.
|
|
|
|
*/
|
|
|
|
static inline int native_window_disconnect(
|
2010-06-30 20:56:17 +00:00
|
|
|
ANativeWindow* window, int api)
|
2010-03-11 23:05:52 +00:00
|
|
|
{
|
|
|
|
return window->perform(window, NATIVE_WINDOW_DISCONNECT, api);
|
|
|
|
}
|
|
|
|
|
2010-04-16 01:48:26 +00:00
|
|
|
/*
|
2010-05-21 21:19:50 +00:00
|
|
|
* native_window_set_crop(..., crop)
|
|
|
|
* Sets which region of the next queued buffers needs to be considered.
|
2010-04-16 01:48:26 +00:00
|
|
|
* A buffer's crop region is scaled to match the surface's size.
|
|
|
|
*
|
|
|
|
* The specified crop region applies to all buffers queued after it is called.
|
|
|
|
*
|
|
|
|
* if 'crop' is NULL, subsequently queued buffers won't be cropped.
|
|
|
|
*
|
|
|
|
* An error is returned if for instance the crop region is invalid,
|
|
|
|
* out of the buffer's bound or if the window is invalid.
|
|
|
|
*/
|
|
|
|
static inline int native_window_set_crop(
|
2010-06-30 20:56:17 +00:00
|
|
|
ANativeWindow* window,
|
2010-04-16 01:48:26 +00:00
|
|
|
android_native_rect_t const * crop)
|
|
|
|
{
|
|
|
|
return window->perform(window, NATIVE_WINDOW_SET_CROP, crop);
|
|
|
|
}
|
2009-08-12 05:34:02 +00:00
|
|
|
|
2010-05-21 21:19:50 +00:00
|
|
|
/*
|
|
|
|
* native_window_set_buffer_count(..., count)
|
|
|
|
* Sets the number of buffers associated with this native window.
|
|
|
|
*/
|
|
|
|
static inline int native_window_set_buffer_count(
|
2010-06-30 20:56:17 +00:00
|
|
|
ANativeWindow* window,
|
2010-05-21 21:19:50 +00:00
|
|
|
size_t bufferCount)
|
|
|
|
{
|
|
|
|
return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount);
|
|
|
|
}
|
|
|
|
|
2010-05-22 00:24:35 +00:00
|
|
|
/*
|
|
|
|
* native_window_set_buffers_geometry(..., int w, int h, int format)
|
|
|
|
* All buffers dequeued after this call will have the geometry specified.
|
|
|
|
* In particular, all buffers will have a fixed-size, independent form the
|
|
|
|
* native-window size. They will be appropriately scaled to the window-size
|
|
|
|
* upon composition.
|
|
|
|
*
|
|
|
|
* If all parameters are 0, the normal behavior is restored. That is,
|
|
|
|
* dequeued buffers following this call will be sized to the window's size.
|
|
|
|
*
|
2011-01-29 02:21:54 +00:00
|
|
|
* Calling this function will reset the window crop to a NULL value, which
|
|
|
|
* disables cropping of the buffers.
|
2010-05-22 00:24:35 +00:00
|
|
|
*/
|
|
|
|
static inline int native_window_set_buffers_geometry(
|
2010-06-30 20:56:17 +00:00
|
|
|
ANativeWindow* window,
|
2010-05-22 00:24:35 +00:00
|
|
|
int w, int h, int format)
|
|
|
|
{
|
|
|
|
return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_GEOMETRY,
|
|
|
|
w, h, format);
|
|
|
|
}
|
|
|
|
|
2010-08-20 00:01:19 +00:00
|
|
|
/*
|
|
|
|
* native_window_set_buffers_transform(..., int transform)
|
|
|
|
* All buffers queued after this call will be displayed transformed according
|
|
|
|
* to the transform parameter specified.
|
|
|
|
*/
|
|
|
|
static inline int native_window_set_buffers_transform(
|
|
|
|
ANativeWindow* window,
|
|
|
|
int transform)
|
|
|
|
{
|
|
|
|
return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_TRANSFORM,
|
|
|
|
transform);
|
|
|
|
}
|
|
|
|
|
2009-05-06 01:29:35 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
2009-04-10 21:24:30 +00:00
|
|
|
|
|
|
|
/* FIXME: this is legacy for pixmaps */
|
2009-08-14 00:57:53 +00:00
|
|
|
typedef struct egl_native_pixmap_t
|
2009-04-10 21:24:30 +00:00
|
|
|
{
|
|
|
|
int32_t version; /* must be 32 */
|
|
|
|
int32_t width;
|
|
|
|
int32_t height;
|
|
|
|
int32_t stride;
|
|
|
|
uint8_t* data;
|
|
|
|
uint8_t format;
|
|
|
|
uint8_t rfu[3];
|
|
|
|
union {
|
|
|
|
uint32_t compressedFormat;
|
|
|
|
int32_t vstride;
|
|
|
|
};
|
|
|
|
int32_t reserved;
|
2009-08-14 00:57:53 +00:00
|
|
|
} egl_native_pixmap_t;
|
2009-04-10 21:24:30 +00:00
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
#include <utils/RefBase.h>
|
|
|
|
|
|
|
|
namespace android {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This helper class turns an EGL android_native_xxx type into a C++
|
|
|
|
* reference-counted object; with proper type conversions.
|
|
|
|
*/
|
|
|
|
template <typename NATIVE_TYPE, typename TYPE, typename REF>
|
|
|
|
class EGLNativeBase : public NATIVE_TYPE, public REF
|
|
|
|
{
|
2010-05-11 00:33:32 +00:00
|
|
|
public:
|
|
|
|
// Disambiguate between the incStrong in REF and NATIVE_TYPE
|
|
|
|
void incStrong(const void* id) const {
|
|
|
|
REF::incStrong(id);
|
|
|
|
}
|
|
|
|
void decStrong(const void* id) const {
|
|
|
|
REF::decStrong(id);
|
|
|
|
}
|
|
|
|
|
2009-04-10 21:24:30 +00:00
|
|
|
protected:
|
|
|
|
typedef EGLNativeBase<NATIVE_TYPE, TYPE, REF> BASE;
|
|
|
|
EGLNativeBase() : NATIVE_TYPE(), REF() {
|
|
|
|
NATIVE_TYPE::common.incRef = incRef;
|
|
|
|
NATIVE_TYPE::common.decRef = decRef;
|
|
|
|
}
|
|
|
|
static inline TYPE* getSelf(NATIVE_TYPE* self) {
|
|
|
|
return static_cast<TYPE*>(self);
|
|
|
|
}
|
|
|
|
static inline TYPE const* getSelf(NATIVE_TYPE const* self) {
|
|
|
|
return static_cast<TYPE const *>(self);
|
|
|
|
}
|
|
|
|
static inline TYPE* getSelf(android_native_base_t* base) {
|
|
|
|
return getSelf(reinterpret_cast<NATIVE_TYPE*>(base));
|
|
|
|
}
|
|
|
|
static inline TYPE const * getSelf(android_native_base_t const* base) {
|
|
|
|
return getSelf(reinterpret_cast<NATIVE_TYPE const*>(base));
|
|
|
|
}
|
|
|
|
static void incRef(android_native_base_t* base) {
|
|
|
|
EGLNativeBase* self = getSelf(base);
|
|
|
|
self->incStrong(self);
|
|
|
|
}
|
|
|
|
static void decRef(android_native_base_t* base) {
|
|
|
|
EGLNativeBase* self = getSelf(base);
|
|
|
|
self->decStrong(self);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace android
|
|
|
|
#endif // __cplusplus
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
#endif /* ANDROID_ANDROID_NATIVES_H */
|