blob: b790fe8abc3ec7d511a474f691d42d8a398b2043 [file] [log] [blame]
Mathias Agopian5d3de302010-08-05 15:24:35 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_INCLUDE_HARDWARE_HWCOMPOSER_H
18#define ANDROID_INCLUDE_HARDWARE_HWCOMPOSER_H
19
20#include <stdint.h>
21#include <sys/cdefs.h>
22
23#include <hardware/hardware.h>
24#include <cutils/native_handle.h>
25
26__BEGIN_DECLS
27
28/*****************************************************************************/
29/**
30 * The id of this module
31 */
32#define HWC_HARDWARE_MODULE_ID "hwcomposer"
33
34/**
35 * Name of the sensors device to open
36 */
37#define HWC_HARDWARE_COMPOSER "composer"
38
39
40enum {
41 /* hwc_composer_device_t::set failed in EGL */
42 HWC_EGL_ERROR = -1
43};
44
45/*
46 * hwc_layer_t::hints values
47 * Hints are set by the HAL and read by SurfaceFlinger
48 */
49enum {
50 /*
Mathias Agopiancdd44a02010-08-12 15:04:58 -070051 * HWC can set the HWC_HINT_TRIPLE_BUFFER hint to indicate to SurfaceFlinger
Mathias Agopian5d3de302010-08-05 15:24:35 -070052 * that it should triple buffer this layer. Typically HWC does this when
53 * the layer will be unavailable for use for an extended period of time,
54 * e.g. if the display will be fetching data directly from the layer and
55 * the layer can not be modified until after the next set().
56 */
Mathias Agopiancdd44a02010-08-12 15:04:58 -070057 HWC_HINT_TRIPLE_BUFFER = 0x00000001,
58
59 /*
60 * HWC sets HWC_HINT_CLEAR_FB to tell SurfaceFlinger that it should clear the
61 * framebuffer with transparent pixels where this layer would be.
62 * SurfaceFlinger will only honor this flag when the layer has no blending
63 *
64 */
65 HWC_HINT_CLEAR_FB = 0x00000002
Mathias Agopian5d3de302010-08-05 15:24:35 -070066};
67
68/*
69 * hwc_layer_t::flags values
70 * Flags are set by SurfaceFlinger and read by the HAL
71 */
72enum {
73 /*
74 * HWC_SKIP_LAYER is set by SurfaceFlnger to indicate that the HAL
75 * shall not consider this layer for composition as it will be handled
76 * by SurfaceFlinger (just as if compositionType was set to HWC_OVERLAY).
77 */
78 HWC_SKIP_LAYER = 0x00000001,
79};
80
81/*
82 * hwc_layer_t::compositionType values
83 */
84enum {
85 /* this layer is to be drawn into the framebuffer by SurfaceFlinger */
86 HWC_FRAMEBUFFER = 0,
87
88 /* this layer will be handled in the HWC */
89 HWC_OVERLAY = 1,
90};
91
92/*
93 * hwc_layer_t::blending values
94 */
95enum {
96 /* no blending */
97 HWC_BLENDING_NONE = 0x0100,
98
99 /* ONE / ONE_MINUS_SRC_ALPHA */
100 HWC_BLENDING_PREMULT = 0x0105,
101
102 /* SRC_ALPHA / ONE_MINUS_SRC_ALPHA */
103 HWC_BLENDING_COVERAGE = 0x0405
104};
105
106/*
107 * hwc_layer_t::transform values
108 */
109enum {
110 /* flip source image horizontally */
111 HWC_TRANSFORM_FLIP_H = HAL_TRANSFORM_FLIP_H,
112 /* flip source image vertically */
113 HWC_TRANSFORM_FLIP_V = HAL_TRANSFORM_FLIP_V,
114 /* rotate source image 90 degrees clock-wise */
115 HWC_TRANSFORM_ROT_90 = HAL_TRANSFORM_ROT_90,
116 /* rotate source image 180 degrees */
117 HWC_TRANSFORM_ROT_180 = HAL_TRANSFORM_ROT_180,
118 /* rotate source image 270 degrees clock-wise */
119 HWC_TRANSFORM_ROT_270 = HAL_TRANSFORM_ROT_270,
120};
121
122typedef struct hwc_rect {
123 int left;
124 int top;
125 int right;
126 int bottom;
127} hwc_rect_t;
128
129typedef struct hwc_region {
130 size_t numRects;
131 hwc_rect_t const* rects;
132} hwc_region_t;
133
134typedef struct hwc_layer {
135 /*
136 * initially set to HWC_FRAMEBUFFER, indicates the layer will
137 * be drawn into the framebuffer using OpenGL ES.
138 * The HWC can toggle this value to HWC_OVERLAY, to indicate
139 * it will handle the layer.
140 */
141 int32_t compositionType;
142
143 /* see hwc_layer_t::hints above */
144 uint32_t hints;
145
146 /* see hwc_layer_t::flags above */
147 uint32_t flags;
148
149 /* handle of buffer to compose. this handle is guaranteed to have been
150 * allocated with gralloc */
151 native_handle_t* handle;
152
153 /* transformation to apply to the buffer during composition */
154 uint32_t transform;
155
156 /* blending to apply during composition */
157 int32_t blending;
158
159 /* area of the source to consider, the origin is the top-left corner of
160 * the buffer */
161 hwc_rect_t sourceCrop;
162
163 /* where to composite the sourceCrop onto the display. The sourceCrop
164 * is scaled using linear filtering to the displayFrame. The origin is the
165 * top-left corner of the screen.
166 */
167 hwc_rect_t displayFrame;
168
169 /* visible region in screen space. The origin is the
170 * top-left corner of the screen.
171 * The visible region INCLUDES areas overlapped by a translucent layer.
172 */
173 hwc_region_t visibleRegionScreen;
174} hwc_layer_t;
175
176
177/*
178 * hwc_layer_list_t::flags values
179 */
180enum {
181 /*
182 * HWC_GEOMETRY_CHANGED is set by SurfaceFlinger to indicate that the list
183 * passed to (*prepare)() has changed by more than just the buffer handles.
184 */
185 HWC_GEOMETRY_CHANGED = 0x00000001,
186};
187
188typedef struct hwc_layer_list {
189 uint32_t flags;
190 size_t numHwLayers;
191 hwc_layer_t hwLayers[0];
192} hwc_layer_list_t;
193
194/* This represents a display, typically an EGLDisplay object */
195typedef void* hwc_display_t;
196
197/* This represents a surface, typically an EGLSurface object */
198typedef void* hwc_surface_t;
199
200/*****************************************************************************/
201
202
203typedef struct hwc_module {
204 struct hw_module_t common;
205} hwc_module_t;
206
207
208typedef struct hwc_composer_device {
209 struct hw_device_t common;
210
211 /*
212 * (*prepare)() is called for each frame before composition and is used by
213 * SurfaceFlinger to determine what composition steps the HWC can handle.
214 *
215 * (*prepare)() can be called more than once, the last call prevails.
216 *
217 * The HWC responds by setting the compositionType field to either
218 * HWC_FRAMEBUFFER or HWC_OVERLAY. In the former case, the composition for
219 * this layer is handled by SurfaceFlinger with OpenGL ES, in the later
220 * case, the HWC will have to handle this layer's composition.
221 *
222 * (*prepare)() is called with HWC_GEOMETRY_CHANGED to indicate that the
223 * list's geometry has changed, that is, when more than just the buffer's
224 * handles have been updated. Typically this happens (but is not limited to)
225 * when a window is added, removed, resized or moved.
226 *
227 * a NULL list parameter or a numHwLayers of zero indicates that the
228 * entire composition will be handled by SurfaceFlinger with OpenGL ES.
229 *
230 * returns: 0 on success. An negative error code on error. If an error is
231 * returned, SurfaceFlinger will assume that none of the layer will be
232 * handled by the HWC.
233 */
234 int (*prepare)(struct hwc_composer_device *dev, hwc_layer_list_t* list);
235
236
237 /*
238 * (*set)() is used in place of eglSwapBuffers(), and assumes the same
239 * functionality, except it also commits the work list atomically with
240 * the actual eglSwapBuffers().
241 *
242 * The list parameter is guaranteed to be the same as the one returned
243 * from the last call to (*prepare)().
244 *
245 * When this call returns the caller assumes that:
246 *
247 * - the display will be updated in the near future with the content
248 * of the work list, without artifacts during the transition from the
249 * previous frame.
250 *
251 * - all objects are available for immediate access or destruction, in
252 * particular, hwc_region_t::rects data and hwc_layer_t::layer's buffer.
253 * Note that this means that immediately accessing (potentially from a
254 * different process) a buffer used in this call will not result in
255 * screen corruption, the driver must apply proper synchronization or
256 * scheduling (eg: block the caller, such as gralloc_module_t::lock(),
257 * OpenGL ES, Camera, Codecs, etc..., or schedule the caller's work
258 * after the buffer is freed from the actual composition).
259 *
260 * a NULL list parameter or a numHwLayers of zero indicates that the
261 * entire composition has been handled by SurfaceFlinger with OpenGL ES.
262 * In this case, (*set)() behaves just like eglSwapBuffers().
263 *
264 * returns: 0 on success. An negative error code on error:
265 * HWC_EGL_ERROR: eglGetError() will provide the proper error code
266 * Another code for non EGL errors.
267 *
268 */
269 int (*set)(struct hwc_composer_device *dev,
270 hwc_display_t dpy,
271 hwc_surface_t sur,
272 hwc_layer_list_t* list);
273
274} hwc_composer_device_t;
275
276
277/** convenience API for opening and closing a device */
278
279static inline int hwc_open(const struct hw_module_t* module,
280 hwc_composer_device_t** device) {
281 return module->methods->open(module,
282 HWC_HARDWARE_COMPOSER, (struct hw_device_t**)device);
283}
284
285static inline int hwc_close(hwc_composer_device_t* device) {
286 return device->common.close(&device->common);
287}
288
289
290/*****************************************************************************/
291
292__END_DECLS
293
294#endif /* ANDROID_INCLUDE_HARDWARE_HWCOMPOSER_H */