blob: 654d0f31ce074a3008574bfbdad14964144f53f9 [file] [log] [blame]
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001/*
2 * Copyright (C) 2009 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 ANDROID_ANDROID_NATIVES_H
18#define ANDROID_ANDROID_NATIVES_H
19
20#include <sys/types.h>
21#include <string.h>
22
23#include <hardware/gralloc.h>
24
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -070025#include <android/native_window.h>
26
Mathias Agopian076b1cc2009-04-10 14:24:30 -070027#ifdef __cplusplus
28extern "C" {
29#endif
30
31/*****************************************************************************/
32
33#define ANDROID_NATIVE_MAKE_CONSTANT(a,b,c,d) \
34 (((unsigned)(a)<<24)|((unsigned)(b)<<16)|((unsigned)(c)<<8)|(unsigned)(d))
35
36#define ANDROID_NATIVE_WINDOW_MAGIC \
37 ANDROID_NATIVE_MAKE_CONSTANT('_','w','n','d')
38
39#define ANDROID_NATIVE_BUFFER_MAGIC \
40 ANDROID_NATIVE_MAKE_CONSTANT('_','b','f','r')
41
42// ---------------------------------------------------------------------------
43
44struct android_native_buffer_t;
45
Mathias Agopiancc08e682010-04-15 18:48:26 -070046typedef struct android_native_rect_t
47{
48 int32_t left;
49 int32_t top;
50 int32_t right;
51 int32_t bottom;
52} android_native_rect_t;
53
Mathias Agopian076b1cc2009-04-10 14:24:30 -070054// ---------------------------------------------------------------------------
55
Mathias Agopian238a66e2009-08-13 17:57:53 -070056typedef struct android_native_base_t
Mathias Agopian076b1cc2009-04-10 14:24:30 -070057{
58 /* a magic value defined by the actual EGL native type */
59 int magic;
60
61 /* the sizeof() of the actual EGL native type */
62 int version;
63
64 void* reserved[4];
65
66 /* reference-counting interface */
Mathias Agopian37b2a372009-08-17 12:33:20 -070067 void (*incRef)(struct android_native_base_t* base);
68 void (*decRef)(struct android_native_base_t* base);
Mathias Agopian238a66e2009-08-13 17:57:53 -070069} android_native_base_t;
Mathias Agopian076b1cc2009-04-10 14:24:30 -070070
Mathias Agopianaa8c0ff2009-05-05 18:29:35 -070071// ---------------------------------------------------------------------------
Mathias Agopian076b1cc2009-04-10 14:24:30 -070072
Mathias Agopiancb6b9042009-07-30 18:14:56 -070073/* attributes queriable with query() */
74enum {
75 NATIVE_WINDOW_WIDTH = 0,
Mathias Agopiancc08e682010-04-15 18:48:26 -070076 NATIVE_WINDOW_HEIGHT,
77 NATIVE_WINDOW_FORMAT,
Mathias Agopiancb6b9042009-07-30 18:14:56 -070078};
79
Mathias Agopian52212712009-08-11 22:34:02 -070080/* valid operations for the (*perform)() hook */
81enum {
Mathias Agopiane156e642010-03-11 15:05:52 -080082 NATIVE_WINDOW_SET_USAGE = 0,
Mathias Agopiancc08e682010-04-15 18:48:26 -070083 NATIVE_WINDOW_CONNECT,
84 NATIVE_WINDOW_DISCONNECT,
85 NATIVE_WINDOW_SET_CROP,
Mathias Agopianf10d7fd2010-05-21 14:19:50 -070086 NATIVE_WINDOW_SET_BUFFER_COUNT,
Mathias Agopiana138f892010-05-21 17:24:35 -070087 NATIVE_WINDOW_SET_BUFFERS_GEOMETRY,
Mathias Agopianb661d662010-08-19 17:01:19 -070088 NATIVE_WINDOW_SET_BUFFERS_TRANSFORM,
Mathias Agopiane156e642010-03-11 15:05:52 -080089};
90
91/* parameter for NATIVE_WINDOW_[DIS]CONNECT */
92enum {
93 NATIVE_WINDOW_API_EGL = 1
Mathias Agopian52212712009-08-11 22:34:02 -070094};
95
Mathias Agopianb661d662010-08-19 17:01:19 -070096/* parameter for NATIVE_WINDOW_SET_BUFFERS_TRANSFORM */
97enum {
98 /* flip source image horizontally */
99 NATIVE_WINDOW_TRANSFORM_FLIP_H = HAL_TRANSFORM_FLIP_H ,
100 /* flip source image vertically */
101 NATIVE_WINDOW_TRANSFORM_FLIP_V = HAL_TRANSFORM_FLIP_V,
102 /* rotate source image 90 degrees clock-wise */
103 NATIVE_WINDOW_TRANSFORM_ROT_90 = HAL_TRANSFORM_ROT_90,
104 /* rotate source image 180 degrees */
105 NATIVE_WINDOW_TRANSFORM_ROT_180 = HAL_TRANSFORM_ROT_180,
106 /* rotate source image 270 degrees clock-wise */
107 NATIVE_WINDOW_TRANSFORM_ROT_270 = HAL_TRANSFORM_ROT_270,
108};
109
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700110struct ANativeWindow
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700111{
112#ifdef __cplusplus
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700113 ANativeWindow()
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700114 : flags(0), minSwapInterval(0), maxSwapInterval(0), xdpi(0), ydpi(0)
115 {
116 common.magic = ANDROID_NATIVE_WINDOW_MAGIC;
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700117 common.version = sizeof(ANativeWindow);
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700118 memset(common.reserved, 0, sizeof(common.reserved));
119 }
Jamie Gennis5e67f872010-05-10 17:33:32 -0700120
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700121 // Implement the methods that sp<ANativeWindow> expects so that it
122 // can be used to automatically refcount ANativeWindow's.
Jamie Gennis5e67f872010-05-10 17:33:32 -0700123 void incStrong(const void* id) const {
124 common.incRef(const_cast<android_native_base_t*>(&common));
125 }
126 void decStrong(const void* id) const {
127 common.decRef(const_cast<android_native_base_t*>(&common));
128 }
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700129#endif
130
131 struct android_native_base_t common;
132
133 /* flags describing some attributes of this surface or its updater */
134 const uint32_t flags;
135
136 /* min swap interval supported by this updated */
137 const int minSwapInterval;
138
139 /* max swap interval supported by this updated */
140 const int maxSwapInterval;
141
142 /* horizontal and vertical resolution in DPI */
143 const float xdpi;
144 const float ydpi;
145
146 /* Some storage reserved for the OEM's driver. */
147 intptr_t oem[4];
148
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700149
150 /*
151 * Set the swap interval for this surface.
152 *
153 * Returns 0 on success or -errno on error.
154 */
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700155 int (*setSwapInterval)(struct ANativeWindow* window,
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700156 int interval);
157
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700158 /*
159 * hook called by EGL to acquire a buffer. After this call, the buffer
160 * is not locked, so its content cannot be modified.
Mathias Agopian0926f502009-05-04 14:17:04 -0700161 * this call may block if no buffers are available.
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700162 *
163 * Returns 0 on success or -errno on error.
164 */
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700165 int (*dequeueBuffer)(struct ANativeWindow* window,
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700166 struct android_native_buffer_t** buffer);
167
168 /*
169 * hook called by EGL to lock a buffer. This MUST be called before modifying
170 * the content of a buffer. The buffer must have been acquired with
171 * dequeueBuffer first.
172 *
173 * Returns 0 on success or -errno on error.
174 */
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700175 int (*lockBuffer)(struct ANativeWindow* window,
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700176 struct android_native_buffer_t* buffer);
177 /*
178 * hook called by EGL when modifications to the render buffer are done.
179 * This unlocks and post the buffer.
180 *
181 * Buffers MUST be queued in the same order than they were dequeued.
182 *
183 * Returns 0 on success or -errno on error.
184 */
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700185 int (*queueBuffer)(struct ANativeWindow* window,
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700186 struct android_native_buffer_t* buffer);
187
Mathias Agopiancb6b9042009-07-30 18:14:56 -0700188 /*
189 * hook used to retrieve information about the native window.
190 *
191 * Returns 0 on success or -errno on error.
192 */
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700193 int (*query)(struct ANativeWindow* window,
Mathias Agopian52212712009-08-11 22:34:02 -0700194 int what, int* value);
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700195
Mathias Agopian52212712009-08-11 22:34:02 -0700196 /*
197 * hook used to perform various operations on the surface.
198 * (*perform)() is a generic mechanism to add functionality to
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700199 * ANativeWindow while keeping backward binary compatibility.
Mathias Agopian52212712009-08-11 22:34:02 -0700200 *
201 * This hook should not be called directly, instead use the helper functions
202 * defined below.
203 *
Mathias Agopiane156e642010-03-11 15:05:52 -0800204 * (*perform)() returns -ENOENT if the 'what' parameter is not supported
205 * by the surface's implementation.
206 *
Mathias Agopian52212712009-08-11 22:34:02 -0700207 * The valid operations are:
208 * NATIVE_WINDOW_SET_USAGE
Mathias Agopiane156e642010-03-11 15:05:52 -0800209 * NATIVE_WINDOW_CONNECT
210 * NATIVE_WINDOW_DISCONNECT
Mathias Agopiancc08e682010-04-15 18:48:26 -0700211 * NATIVE_WINDOW_SET_CROP
Mathias Agopianf10d7fd2010-05-21 14:19:50 -0700212 * NATIVE_WINDOW_SET_BUFFER_COUNT
Mathias Agopiana138f892010-05-21 17:24:35 -0700213 * NATIVE_WINDOW_SET_BUFFERS_GEOMETRY
Mathias Agopianb661d662010-08-19 17:01:19 -0700214 * NATIVE_WINDOW_SET_BUFFERS_TRANSFORM
Mathias Agopian52212712009-08-11 22:34:02 -0700215 *
216 */
217
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700218 int (*perform)(struct ANativeWindow* window,
Mathias Agopian52212712009-08-11 22:34:02 -0700219 int operation, ... );
220
Mathias Agopian19957552010-10-01 16:22:41 -0700221 /*
222 * hook used to cancel a buffer that has been dequeued.
223 * No synchronization is performed between dequeue() and cancel(), so
224 * either external synchronization is needed, or these functions must be
225 * called from the same thread.
226 */
227 int (*cancelBuffer)(struct ANativeWindow* window,
228 struct android_native_buffer_t* buffer);
229
230
231 void* reserved_proc[2];
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700232};
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700233
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700234// Backwards compatibility... please switch to ANativeWindow.
235typedef struct ANativeWindow android_native_window_t;
Mathias Agopian52212712009-08-11 22:34:02 -0700236
237/*
Mathias Agopianf10d7fd2010-05-21 14:19:50 -0700238 * native_window_set_usage(..., usage)
239 * Sets the intended usage flags for the next buffers
240 * acquired with (*lockBuffer)() and on.
Mathias Agopian52212712009-08-11 22:34:02 -0700241 * By default (if this function is never called), a usage of
242 * GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_TEXTURE
243 * is assumed.
244 * Calling this function will usually cause following buffers to be
245 * reallocated.
246 */
247
Dima Zavinfae3e732009-08-13 16:50:54 -0700248static inline int native_window_set_usage(
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700249 ANativeWindow* window, int usage)
Mathias Agopian52212712009-08-11 22:34:02 -0700250{
251 return window->perform(window, NATIVE_WINDOW_SET_USAGE, usage);
252}
253
Mathias Agopiane156e642010-03-11 15:05:52 -0800254/*
Mathias Agopianf10d7fd2010-05-21 14:19:50 -0700255 * native_window_connect(..., NATIVE_WINDOW_API_EGL)
256 * Must be called by EGL when the window is made current.
Mathias Agopiane156e642010-03-11 15:05:52 -0800257 * Returns -EINVAL if for some reason the window cannot be connected, which
258 * can happen if it's connected to some other API.
259 */
260static inline int native_window_connect(
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700261 ANativeWindow* window, int api)
Mathias Agopiane156e642010-03-11 15:05:52 -0800262{
263 return window->perform(window, NATIVE_WINDOW_CONNECT, api);
264}
265
266/*
Mathias Agopianf10d7fd2010-05-21 14:19:50 -0700267 * native_window_disconnect(..., NATIVE_WINDOW_API_EGL)
268 * Must be called by EGL when the window is made not current.
Mathias Agopiane156e642010-03-11 15:05:52 -0800269 * An error is returned if for instance the window wasn't connected in the
270 * first place.
271 */
272static inline int native_window_disconnect(
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700273 ANativeWindow* window, int api)
Mathias Agopiane156e642010-03-11 15:05:52 -0800274{
275 return window->perform(window, NATIVE_WINDOW_DISCONNECT, api);
276}
277
Mathias Agopiancc08e682010-04-15 18:48:26 -0700278/*
Mathias Agopianf10d7fd2010-05-21 14:19:50 -0700279 * native_window_set_crop(..., crop)
280 * Sets which region of the next queued buffers needs to be considered.
Mathias Agopiancc08e682010-04-15 18:48:26 -0700281 * A buffer's crop region is scaled to match the surface's size.
282 *
283 * The specified crop region applies to all buffers queued after it is called.
284 *
285 * if 'crop' is NULL, subsequently queued buffers won't be cropped.
286 *
287 * An error is returned if for instance the crop region is invalid,
288 * out of the buffer's bound or if the window is invalid.
289 */
290static inline int native_window_set_crop(
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700291 ANativeWindow* window,
Mathias Agopiancc08e682010-04-15 18:48:26 -0700292 android_native_rect_t const * crop)
293{
294 return window->perform(window, NATIVE_WINDOW_SET_CROP, crop);
295}
Mathias Agopian52212712009-08-11 22:34:02 -0700296
Mathias Agopianf10d7fd2010-05-21 14:19:50 -0700297/*
298 * native_window_set_buffer_count(..., count)
299 * Sets the number of buffers associated with this native window.
300 */
301static inline int native_window_set_buffer_count(
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700302 ANativeWindow* window,
Mathias Agopianf10d7fd2010-05-21 14:19:50 -0700303 size_t bufferCount)
304{
305 return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount);
306}
307
Mathias Agopiana138f892010-05-21 17:24:35 -0700308/*
309 * native_window_set_buffers_geometry(..., int w, int h, int format)
310 * All buffers dequeued after this call will have the geometry specified.
311 * In particular, all buffers will have a fixed-size, independent form the
312 * native-window size. They will be appropriately scaled to the window-size
313 * upon composition.
314 *
315 * If all parameters are 0, the normal behavior is restored. That is,
316 * dequeued buffers following this call will be sized to the window's size.
317 *
318 */
319static inline int native_window_set_buffers_geometry(
Dianne Hackborn4b5e91e2010-06-30 13:56:17 -0700320 ANativeWindow* window,
Mathias Agopiana138f892010-05-21 17:24:35 -0700321 int w, int h, int format)
322{
323 return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_GEOMETRY,
324 w, h, format);
325}
326
Mathias Agopianb661d662010-08-19 17:01:19 -0700327/*
328 * native_window_set_buffers_transform(..., int transform)
329 * All buffers queued after this call will be displayed transformed according
330 * to the transform parameter specified.
331 */
332static inline int native_window_set_buffers_transform(
333 ANativeWindow* window,
334 int transform)
335{
336 return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_TRANSFORM,
337 transform);
338}
339
Mathias Agopianaa8c0ff2009-05-05 18:29:35 -0700340// ---------------------------------------------------------------------------
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700341
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700342/* FIXME: this is legacy for pixmaps */
Mathias Agopian238a66e2009-08-13 17:57:53 -0700343typedef struct egl_native_pixmap_t
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700344{
345 int32_t version; /* must be 32 */
346 int32_t width;
347 int32_t height;
348 int32_t stride;
349 uint8_t* data;
350 uint8_t format;
351 uint8_t rfu[3];
352 union {
353 uint32_t compressedFormat;
354 int32_t vstride;
355 };
356 int32_t reserved;
Mathias Agopian238a66e2009-08-13 17:57:53 -0700357} egl_native_pixmap_t;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700358
359/*****************************************************************************/
360
361#ifdef __cplusplus
362}
363#endif
364
365
366/*****************************************************************************/
367
368#ifdef __cplusplus
369
370#include <utils/RefBase.h>
371
372namespace android {
373
374/*
375 * This helper class turns an EGL android_native_xxx type into a C++
376 * reference-counted object; with proper type conversions.
377 */
378template <typename NATIVE_TYPE, typename TYPE, typename REF>
379class EGLNativeBase : public NATIVE_TYPE, public REF
380{
Jamie Gennis5e67f872010-05-10 17:33:32 -0700381public:
382 // Disambiguate between the incStrong in REF and NATIVE_TYPE
383 void incStrong(const void* id) const {
384 REF::incStrong(id);
385 }
386 void decStrong(const void* id) const {
387 REF::decStrong(id);
388 }
389
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700390protected:
391 typedef EGLNativeBase<NATIVE_TYPE, TYPE, REF> BASE;
392 EGLNativeBase() : NATIVE_TYPE(), REF() {
393 NATIVE_TYPE::common.incRef = incRef;
394 NATIVE_TYPE::common.decRef = decRef;
395 }
396 static inline TYPE* getSelf(NATIVE_TYPE* self) {
397 return static_cast<TYPE*>(self);
398 }
399 static inline TYPE const* getSelf(NATIVE_TYPE const* self) {
400 return static_cast<TYPE const *>(self);
401 }
402 static inline TYPE* getSelf(android_native_base_t* base) {
403 return getSelf(reinterpret_cast<NATIVE_TYPE*>(base));
404 }
405 static inline TYPE const * getSelf(android_native_base_t const* base) {
406 return getSelf(reinterpret_cast<NATIVE_TYPE const*>(base));
407 }
408 static void incRef(android_native_base_t* base) {
409 EGLNativeBase* self = getSelf(base);
410 self->incStrong(self);
411 }
412 static void decRef(android_native_base_t* base) {
413 EGLNativeBase* self = getSelf(base);
414 self->decStrong(self);
415 }
416};
417
418} // namespace android
419#endif // __cplusplus
420
421/*****************************************************************************/
422
423#endif /* ANDROID_ANDROID_NATIVES_H */