Add typedef tbm_surface_plane_s
[platform/core/uifw/libtbm.git] / src / tbm_surface.h
1 /**************************************************************************
2
3 libtbm
4
5 Copyright 2014 Samsung Electronics co., Ltd. All Rights Reserved.
6
7 Contact: SooChan Lim <sc1.lim@samsung.com>, Sangjin Lee <lsj119@samsung.com>
8 Inpyo Kang <mantiger@samsung.com>, Dongyeon Kim <dy5.kim@samsung.com>
9 Boram Park <boram1288.park@samsung.com>, Changyeon Lee <cyeon.lee@samsung.com>
10
11 Permission is hereby granted, free of charge, to any person obtaining a
12 copy of this software and associated documentation files (the
13 "Software"), to deal in the Software without restriction, including
14 without limitation the rights to use, copy, modify, merge, publish,
15 distribute, sub license, and/or sell copies of the Software, and to
16 permit persons to whom the Software is furnished to do so, subject to
17 the following conditions:
18
19 The above copyright notice and this permission notice (including the
20 next paragraph) shall be included in all copies or substantial portions
21 of the Software.
22
23 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
26 IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
27 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
28 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
29 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30
31 **************************************************************************/
32
33 #ifndef _TBM_SURFACE_H_
34 #define _TBM_SURFACE_H_
35
36 /**
37  * @addtogroup CAPI_UI_TBM_SURFACE_MODULE
38  * @{
39  */
40
41 #include <tbm_type.h>
42 #include <tizen.h>
43
44 /**
45  * \file tbm_surface.h
46  * \brief TBM Surface
47  */
48
49 /**
50  * @brief Enumeration of tbm_surface error type
51  * @since_tizen 2.3
52  */
53 typedef enum
54 {
55     TBM_SURFACE_ERROR_NONE  = TIZEN_ERROR_NONE, /**< Successful */
56     TBM_SURFACE_ERROR_INVALID_PARAMETER  = TIZEN_ERROR_INVALID_PARAMETER, /**< Invalid parameter */
57     TBM_SURFACE_ERROR_INVALID_OPERATION  = TIZEN_ERROR_INVALID_OPERATION, /**< Invalid Operation */
58 } tbm_surface_error_e;
59
60 /**
61  * @brief Definition for the max number of tbm surface plane.
62  * @since_tizen 2.3
63  */
64 #define TBM_SURF_PLANE_MAX 4
65
66 /* option to map the tbm_surface */
67 /**
68  * @brief Definition for the access option to read.
69  * @since_tizen 2.3
70  */
71 #define TBM_SURF_OPTION_READ      (1 << 0)
72 /**
73  * @brief Definition for the access option to write.
74  * @since_tizen 2.3
75  */
76 #define TBM_SURF_OPTION_WRITE     (1 << 1)
77
78 /**
79  * @brief Definition for the tbm plane struct.
80  * @since_tizen 2.3
81  */
82 typedef struct _tbm_surface_plane
83 {
84     unsigned char *ptr; /**< plane pointer */
85     uint32_t size; /**< plane size */
86     uint32_t offset; /**< plane offset */
87     uint32_t stride; /**< plane stride */
88
89     void *reserved1; /**< reserved pointer1 */
90     void *reserved2; /**< reserved pointer2 */
91     void *reserved3; /**< reserved pointer3 */
92 } tbm_surface_plane_s;
93
94 /**
95  * @brief Definition for the tbm surface infomation struct.
96  * @since_tizen 2.3
97  */
98 typedef struct _tbm_surface_info
99 {
100     uint32_t width; /**< tbm surface width */
101     uint32_t height; /**< tbm surface height */
102     tbm_format format; /**<  tbm surface foramt*/
103     uint32_t bpp; /**< tbm surface bbp */
104     uint32_t size; /**< tbm surface size */
105
106     uint32_t num_planes; /**< the number of planes */
107     tbm_surface_plane_s planes[TBM_SURF_PLANE_MAX]; /**< array of planes */
108
109     void *reserved4; /**< reserved pointer4 */
110     void *reserved5; /**< reserved pointer5 */
111     void *reserved6; /**< reserved pointer6 */
112 } tbm_surface_info_s;
113
114 #define __tbm_fourcc_code(a,b,c,d) ((uint32_t)(a) | ((uint32_t)(b) << 8) | \
115                               ((uint32_t)(c) << 16) | ((uint32_t)(d) << 24))
116
117 /* color index */
118 /**
119  * @brief Definition for the tbm surface foramt C8 ([7:0] C)
120  * @since_tizen 2.3
121  */
122 #define TBM_FORMAT_C8           __tbm_fourcc_code('C', '8', ' ', ' ')
123
124 /* 8 bpp RGB */
125 /**
126  * @brief Definition for the tbm surface foramt RGB322  ([7:0] R:G:B 3:3:2)
127  * @since_tizen 2.3
128  */
129 #define TBM_FORMAT_RGB332       __tbm_fourcc_code('R', 'G', 'B', '8')
130 /**
131  * @brief Definition for the tbm surface foramt RGB233  ([7:0] B:G:R 2:3:3)
132  * @since_tizen 2.3
133  */
134 #define TBM_FORMAT_BGR233       __tbm_fourcc_code('B', 'G', 'R', '8')
135
136 /* 16 bpp RGB */
137 /**
138  * @brief Definition for the tbm surface foramt XRGB4444 ([15:0] x:R:G:B 4:4:4:4 little endian)
139  * @since_tizen 2.3
140  */
141 #define TBM_FORMAT_XRGB4444     __tbm_fourcc_code('X', 'R', '1', '2')
142 /**
143  * @brief Definition for the tbm surface foramt XBRG4444 ([15:0] x:B:G:R 4:4:4:4 little endian)
144  * @since_tizen 2.3
145  */
146 #define TBM_FORMAT_XBGR4444     __tbm_fourcc_code('X', 'B', '1', '2')
147 /**
148  * @brief Definition for the tbm surface foramt RGBX4444 ([15:0] R:G:B:x 4:4:4:4 little endian)
149  * @since_tizen 2.3
150  */
151 #define TBM_FORMAT_RGBX4444     __tbm_fourcc_code('R', 'X', '1', '2')
152 /**
153  * @brief Definition for the tbm surface foramt BGRX4444 ([15:0] B:G:R:x 4:4:4:4 little endian)
154  * @since_tizen 2.3
155  */
156 #define TBM_FORMAT_BGRX4444     __tbm_fourcc_code('B', 'X', '1', '2')
157
158 /**
159  * @brief Definition for the tbm surface foramt ARGB4444 ([15:0] A:R:G:B 4:4:4:4 little endian)
160  * @since_tizen 2.3
161  */
162 #define TBM_FORMAT_ARGB4444     __tbm_fourcc_code('A', 'R', '1', '2')
163 /**
164  * @brief Definition for the tbm surface foramt ABGR4444 ([15:0] A:B:G:R 4:4:4:4 little endian)
165  * @since_tizen 2.3
166  */
167 #define TBM_FORMAT_ABGR4444     __tbm_fourcc_code('A', 'B', '1', '2')
168 /**
169  * @brief Definition for the tbm surface foramt RGBA4444 ([15:0] R:G:B:A 4:4:4:4 little endian)
170  * @since_tizen 2.3
171  */
172 #define TBM_FORMAT_RGBA4444     __tbm_fourcc_code('R', 'A', '1', '2')
173 /**
174  * @brief Definition for the tbm surface foramt BGRA4444 ([15:0] B:G:R:A 4:4:4:4 little endian)
175  * @since_tizen 2.3
176  */
177 #define TBM_FORMAT_BGRA4444     __tbm_fourcc_code('B', 'A', '1', '2')
178
179 /**
180  * @brief Definition for the tbm surface foramt XRGB1555 ([15:0] x:R:G:B 1:5:5:5 little endian)
181  * @since_tizen 2.3
182  */
183 #define TBM_FORMAT_XRGB1555     __tbm_fourcc_code('X', 'R', '1', '5')
184 /**
185  * @brief Definition for the tbm surface foramt XBGR1555 ([15:0] x:B:G:R 1:5:5:5 little endian)
186  * @since_tizen 2.3
187  */
188 #define TBM_FORMAT_XBGR1555     __tbm_fourcc_code('X', 'B', '1', '5')
189 /**
190  * @brief Definition for the tbm surface foramt RGBX5551 ([15:0] R:G:B:x 5:5:5:1 little endian)
191  * @since_tizen 2.3
192  */
193 #define TBM_FORMAT_RGBX5551     __tbm_fourcc_code('R', 'X', '1', '5')
194 /**
195  * @brief Definition for the tbm surface foramt BGRX5551 ([15:0] B:G:R:x 5:5:5:1 little endian)
196  * @since_tizen 2.3
197  */
198 #define TBM_FORMAT_BGRX5551     __tbm_fourcc_code('B', 'X', '1', '5')
199
200 /**
201  * @brief Definition for the tbm surface foramt ARGB1555 ([15:0] A:R:G:B 1:5:5:5 little endian)
202  * @since_tizen 2.3
203  */
204 #define TBM_FORMAT_ARGB1555     __tbm_fourcc_code('A', 'R', '1', '5')
205 /**
206  * @brief Definition for the tbm surface foramt ABGR1555 ([15:0] A:B:G:R 1:5:5:5 little endian)
207  * @since_tizen 2.3
208  */
209 #define TBM_FORMAT_ABGR1555     __tbm_fourcc_code('A', 'B', '1', '5')
210 /**
211  * @brief Definition for the tbm surface foramt RGBA5551 ([15:0] R:G:B:A 5:5:5:1 little endian)
212  * @since_tizen 2.3
213  */
214 #define TBM_FORMAT_RGBA5551     __tbm_fourcc_code('R', 'A', '1', '5')
215 /**
216  * @brief Definition for the tbm surface foramt BGRA5551 ([15:0] B:G:R:A 5:5:5:1 little endian)
217  * @since_tizen 2.3
218  */
219 #define TBM_FORMAT_BGRA5551     __tbm_fourcc_code('B', 'A', '1', '5')
220
221 /**
222  * @brief Definition for the tbm surface foramt RGB565 ([15:0] R:G:B 5:6:5 little endian)
223  * @since_tizen 2.3
224  */
225 #define TBM_FORMAT_RGB565       __tbm_fourcc_code('R', 'G', '1', '6')
226 /**
227  * @brief Definition for the tbm surface foramt BGR565 ([15:0] B:G:R 5:6:5 little endian)
228  * @since_tizen 2.3
229  */
230 #define TBM_FORMAT_BGR565       __tbm_fourcc_code('B', 'G', '1', '6')
231
232 /* 24 bpp RGB */
233 /**
234  * @brief Definition for the tbm surface foramt RGB888 ([23:0] R:G:B little endian)
235  * @since_tizen 2.3
236  */
237 #define TBM_FORMAT_RGB888       __tbm_fourcc_code('R', 'G', '2', '4')
238 /**
239  * @brief Definition for the tbm surface foramt BGR888 ([23:0] B:G:R little endian)
240  * @since_tizen 2.3
241  */
242 #define TBM_FORMAT_BGR888       __tbm_fourcc_code('B', 'G', '2', '4')
243
244 /* 32 bpp RGB */
245 /**
246  * @brief Definition for the tbm surface foramt XRGB8888 ([31:0] x:R:G:B 8:8:8:8 little endian)
247  * @since_tizen 2.3
248  */
249 #define TBM_FORMAT_XRGB8888     __tbm_fourcc_code('X', 'R', '2', '4')
250 /**
251  * @brief Definition for the tbm surface foramt XBGR8888 ([31:0] x:B:G:R 8:8:8:8 little endian)
252  * @since_tizen 2.3
253  */
254 #define TBM_FORMAT_XBGR8888     __tbm_fourcc_code('X', 'B', '2', '4')
255 /**
256  * @brief Definition for the tbm surface foramt RGBX8888 ([31:0] R:G:B:x 8:8:8:8 little endian)
257  * @since_tizen 2.3
258  */
259 #define TBM_FORMAT_RGBX8888     __tbm_fourcc_code('R', 'X', '2', '4')
260 /**
261  * @brief Definition for the tbm surface foramt BGRX8888 ([31:0] B:G:R:x 8:8:8:8 little endian)
262  * @since_tizen 2.3
263  */
264 #define TBM_FORMAT_BGRX8888     __tbm_fourcc_code('B', 'X', '2', '4')
265
266 /**
267  * @brief Definition for the tbm surface foramt ARGB8888 ([31:0] A:R:G:B 8:8:8:8 little endian)
268  * @since_tizen 2.3
269  */
270 #define TBM_FORMAT_ARGB8888     __tbm_fourcc_code('A', 'R', '2', '4')
271 /**
272  * @brief Definition for the tbm surface foramt ABGR8888 ([31:0] [31:0] A:B:G:R 8:8:8:8 little endian)
273  * @since_tizen 2.3
274  */
275 #define TBM_FORMAT_ABGR8888     __tbm_fourcc_code('A', 'B', '2', '4')
276 /**
277  * @brief Definition for the tbm surface foramt RGBA8888 ([31:0] R:G:B:A 8:8:8:8 little endian)
278  * @since_tizen 2.3
279  */
280 #define TBM_FORMAT_RGBA8888     __tbm_fourcc_code('R', 'A', '2', '4')
281 /**
282  * @brief Definition for the tbm surface foramt BGRA8888 ([31:0] B:G:R:A 8:8:8:8 little endian)
283  * @since_tizen 2.3
284  */
285 #define TBM_FORMAT_BGRA8888     __tbm_fourcc_code('B', 'A', '2', '4')
286
287 /**
288  * @brief Definition for the tbm surface foramt XRGB2101010 ([31:0] x:R:G:B 2:10:10:10 little endian)
289  * @since_tizen 2.3
290  */
291 #define TBM_FORMAT_XRGB2101010  __tbm_fourcc_code('X', 'R', '3', '0')
292 /**
293  * @brief Definition for the tbm surface foramt XBGR2101010 ([31:0] x:B:G:R 2:10:10:10 little endian)
294  * @since_tizen 2.3
295  */
296 #define TBM_FORMAT_XBGR2101010  __tbm_fourcc_code('X', 'B', '3', '0')
297 /**
298  * @brief Definition for the tbm surface foramt RGBX1010102 ([31:0] R:G:B:x 10:10:10:2 little endian)
299  * @since_tizen 2.3
300  */
301 #define TBM_FORMAT_RGBX1010102  __tbm_fourcc_code('R', 'X', '3', '0')
302 /**
303  * @brief Definition for the tbm surface foramt BGRX1010102 ([31:0] B:G:R:x 10:10:10:2 little endian)
304  * @since_tizen 2.3
305  */
306 #define TBM_FORMAT_BGRX1010102  __tbm_fourcc_code('B', 'X', '3', '0')
307
308 /**
309  * @brief Definition for the tbm surface foramt ARGB2101010 ([31:0] A:R:G:B 2:10:10:10 little endian)
310  * @since_tizen 2.3
311  */
312 #define TBM_FORMAT_ARGB2101010  __tbm_fourcc_code('A', 'R', '3', '0')
313 /**
314  * @brief Definition for the tbm surface foramt ABGR2101010 ([31:0] A:B:G:R 2:10:10:10 little endian)
315  * @since_tizen 2.3
316  */
317 #define TBM_FORMAT_ABGR2101010  __tbm_fourcc_code('A', 'B', '3', '0')
318 /**
319  * @brief Definition for the tbm surface foramt RGBA1010102 ([31:0] R:G:B:A 10:10:10:2 little endian)
320  * @since_tizen 2.3
321  */
322 #define TBM_FORMAT_RGBA1010102  __tbm_fourcc_code('R', 'A', '3', '0')
323 /**
324  * @brief Definition for the tbm surface foramt BGRA1010102 ([31:0] B:G:R:A 10:10:10:2 little endian)
325  * @since_tizen 2.3
326  */
327 #define TBM_FORMAT_BGRA1010102  __tbm_fourcc_code('B', 'A', '3', '0') /*  */
328
329 /* packed YCbCr */
330 /**
331  * @brief Definition for the tbm surface foramt YUYV ([31:0] Cr0:Y1:Cb0:Y0 8:8:8:8 little endian)
332  * @since_tizen 2.3
333  */
334 #define TBM_FORMAT_YUYV         __tbm_fourcc_code('Y', 'U', 'Y', 'V')
335 /**
336  * @brief Definition for the tbm surface foramt YVYU ([31:0] Cb0:Y1:Cr0:Y0 8:8:8:8 little endian)
337  * @since_tizen 2.3
338  */
339 #define TBM_FORMAT_YVYU         __tbm_fourcc_code('Y', 'V', 'Y', 'U') /*  */
340 /**
341  * @brief Definition for the tbm surface foramt UYVY ([31:0] Y1:Cr0:Y0:Cb0 8:8:8:8 little endian )
342  * @since_tizen 2.3
343  */
344 #define TBM_FORMAT_UYVY         __tbm_fourcc_code('U', 'Y', 'V', 'Y')
345 /**
346  * @brief Definition for the tbm surface foramt VYUY ([31:0] Y1:Cb0:Y0:Cr0 8:8:8:8 little endian)
347  * @since_tizen 2.3
348  */
349 #define TBM_FORMAT_VYUY         __tbm_fourcc_code('V', 'Y', 'U', 'Y')
350
351 /**
352  * @brief Definition for the tbm surface foramt AYUV ([31:0] A:Y:Cb:Cr 8:8:8:8 little endian)
353  * @since_tizen 2.3
354  */
355 #define TBM_FORMAT_AYUV         __tbm_fourcc_code('A', 'Y', 'U', 'V')
356
357 /*
358  * 2 plane YCbCr
359  * index 0 = Y plane, [7:0] Y
360  * index 1 = Cr:Cb plane, [15:0] Cr:Cb little endian
361  * or
362  * index 1 = Cb:Cr plane, [15:0] Cb:Cr little endian
363  */
364 /**
365  * @brief Definition for the tbm surface foramt NV12 (2x2 subsampled Cr:Cb plane)
366  * @since_tizen 2.3
367  */
368 #define TBM_FORMAT_NV12         __tbm_fourcc_code('N', 'V', '1', '2')
369 /**
370  * @brief Definition for the tbm surface foramt NV21 (2x2 subsampled Cb:Cr plane)
371  * @since_tizen 2.3
372  */
373 #define TBM_FORMAT_NV21         __tbm_fourcc_code('N', 'V', '2', '1') /*  */
374 /**
375  * @brief Definition for the tbm surface foramt NV16 (2x1 subsampled Cr:Cb plane)
376  * @since_tizen 2.3
377  */
378 #define TBM_FORMAT_NV16         __tbm_fourcc_code('N', 'V', '1', '6')
379 /**
380  * @brief Definition for the tbm surface foramt NV61 (2x1 subsampled Cb:Cr plane)
381  * @since_tizen 2.3
382  */
383 #define TBM_FORMAT_NV61         __tbm_fourcc_code('N', 'V', '6', '1')
384
385 /*
386  * 3 plane YCbCr
387  * index 0: Y plane, [7:0] Y
388  * index 1: Cb plane, [7:0] Cb
389  * index 2: Cr plane, [7:0] Cr
390  * or
391  * index 1: Cr plane, [7:0] Cr
392  * index 2: Cb plane, [7:0] Cb
393  */
394 /**
395  * @brief Definition for the tbm surface foramt YUV410 (4x4 subsampled Cb (1) and Cr (2) planes)
396  */
397 #define TBM_FORMAT_YUV410       __tbm_fourcc_code('Y', 'U', 'V', '9')
398 /**
399  * @brief Definition for the tbm surface foramt YVU410 (4x4 subsampled Cr (1) and Cb (2) planes)
400  * @since_tizen 2.3
401  */
402 #define TBM_FORMAT_YVU410       __tbm_fourcc_code('Y', 'V', 'U', '9')
403 /**
404  * @brief Definition for the tbm surface foramt YUV411 (4x1 subsampled Cb (1) and Cr (2) planes)
405  * @since_tizen 2.3
406  */
407 #define TBM_FORMAT_YUV411       __tbm_fourcc_code('Y', 'U', '1', '1')
408 /**
409  * @brief Definition for the tbm surface foramt YVU411 (4x1 subsampled Cr (1) and Cb (2) planes)
410  * @since_tizen 2.3
411  */
412 #define TBM_FORMAT_YVU411       __tbm_fourcc_code('Y', 'V', '1', '1')
413 /**
414  * @brief Definition for the tbm surface foramt YUV420 (2x2 subsampled Cb (1) and Cr (2) planes)
415  * @since_tizen 2.3
416  */
417 #define TBM_FORMAT_YUV420       __tbm_fourcc_code('Y', 'U', '1', '2')
418 /**
419  * @brief Definition for the tbm surface foramt YVU420 (2x2 subsampled Cr (1) and Cb (2) planes)
420  * @since_tizen 2.3
421  */
422 #define TBM_FORMAT_YVU420       __tbm_fourcc_code('Y', 'V', '1', '2')
423 /**
424  * @brief Definition for the tbm surface foramt YUV422 (2x1 subsampled Cb (1) and Cr (2) planes)
425  * @since_tizen 2.3
426  */
427 #define TBM_FORMAT_YUV422       __tbm_fourcc_code('Y', 'U', '1', '6')
428 /**
429  * @brief Definition for the tbm surface foramt YVU422 (2x1 subsampled Cr (1) and Cb (2) planes)
430  * @since_tizen 2.3
431  */
432 #define TBM_FORMAT_YVU422       __tbm_fourcc_code('Y', 'V', '1', '6')
433 /**
434  * @brief Definition for the tbm surface foramt YUV444 (non-subsampled Cb (1) and Cr (2) planes)
435  * @since_tizen 2.3
436  */
437 #define TBM_FORMAT_YUV444       __tbm_fourcc_code('Y', 'U', '2', '4')
438 /**
439  * @brief Definition for the tbm surface foramt YVU444 (non-subsampled Cr (1) and Cb (2) planes)
440  * @since_tizen 2.3
441  */
442 #define TBM_FORMAT_YVU444       __tbm_fourcc_code('Y', 'V', '2', '4')
443
444 #ifdef __cplusplus
445 extern "C" {
446 #endif
447
448 /**
449  * @brief Queries surface format list and number of format supported by the system.
450  * @since_tizen 2.3
451  * @remarks The formats must be released using free().
452  * @param[out] **formats : format array which the system can support. This pointer has to be freed by user.
453  * @param[out] num : the number of formats.
454  * @return #TBM_SURFACE_ERROR_NONE if this function succeeds, otherwise error status value
455  * @retval #TBM_SURFACE_ERROR_NONE
456  * @retval #TBM_SURFACE_ERROR_INVALID_OPERATION
457  * @par Example
458    @code
459    #include <tbm_surface.h>
460
461    uint32_t *formats;
462    uint32_t format_num;
463    int ret, i;
464
465    if (tbm_surface_query_formats (&formats, &format_num))
466    {
467        for( i = 0 ; i < format_num ; i++)
468        {
469            if (formats[i] == TBM_FORMAT_RGB332)
470            {
471
472    ....
473
474    free (formats);
475    @endcode
476  */
477 int tbm_surface_query_formats (uint32_t **formats, uint32_t *num);
478
479 /**
480  * @brief Creates the tbm_surface.
481  * @details This function create the tbm_surface with width, height, format.
482  * @since_tizen 2.3
483  * @remark The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
484  * @param[in] width  : the width of surface
485  * @param[in] height : the height of surface
486  * @param[in] format : the format of surface
487  * @return a tbm_surface_h if this function succeeds, otherwise NULL
488  * @retval #tbm_surface_h
489  * @exception #TBM_SURFACE_ERROR_NONE Success
490  * @exception #TBM_SURFACE_ERROR_INVALID_PARAMETER  Invalid parameter
491  * @exception #TBM_SURFACE_ERROR_INVALID_OPERATION Invalid operation
492  * @see tbm_surface_destroy()
493  * @par Example
494    @code
495    #include <tbm_surface.h>
496
497    tbm_surface_h surface;
498
499    surface = tbm_surface_create (128, 128, TBM_FORMAT_RGB332);
500
501    ...
502
503    tbm_surface_destroy (surface);
504    @endcode
505  */
506 tbm_surface_h tbm_surface_create (int width, int height, tbm_format format);
507
508 /**
509  * @brief Destroies the tbm_surface.
510  * @since_tizen 2.3
511  * @param[in] surface : the tbm_surface_h
512  * @return #TBM_SURFACE_ERROR_NONE if this function succeeds, otherwise error status value
513  * @retval #TBM_SURFACE_ERROR_NONE
514  * @retval #TBM_SURFACE_ERROR_INVALID_PARAMETER
515  * @see tbm_surface_create()
516  * @par Example
517    @code
518    #include <tbm_surface.h>
519
520    tbm_surface_h surface;
521
522    surface = tbm_surface_create (128, 128, TBM_FORMAT_RGB332);
523
524    ...
525
526    tbm_surface_destroy (surface);
527    @endcode
528  */
529 int tbm_surface_destroy (tbm_surface_h surface);
530
531 /**
532  * @brief Maps the tbm_surface according to the access option.
533  * @details After mapping tbm_surface, the information of tbm_surface is assigned in #tbm_surface_info_s struct.\n
534  * The information of tbm_surface has width, height, format, bpp, size, number of planes and information of planes.\n
535  * The information of planes has stride, offset, size and pointer of plane\n
536  * #TBM_SURF_OPTION_READ indecates access option to read.\n
537  * #TBM_SURF_OPTION_WRITE indecates access option to write.
538  * @since_tizen 2.3
539  * @param[in] surface : the tbm_surface_h
540  * @param[in] opt : the option to access the tbm_surface
541  * @param[out] *info : the infomation of the tbm_surface
542  * @return #TBM_SURFACE_ERROR_NONE if this function succeeds, otherwise error status value
543  * @retval #TBM_SURFACE_ERROR_NONE
544  * @retval #TBM_SURFACE_ERROR_INVALID_PARAMETER
545  * @retval #TBM_SURFACE_ERROR_INVALID_OPERATION
546  * @see tbm_surface_unmap();
547  * @par Example
548    @code
549    #include <tbm_surface.h>
550
551    tbm_surface_h surface;
552    tbm_surface_info_s info;
553    int ret;
554
555    surface = tbm_surface_create (128, 128, TBM_FORMAT_RGB332);
556    ret = tbm_surface_map (surface, TBM_SURF_OPTION_WRITE|TBM_SURF_OPTION_READ, &info);
557
558    ...
559
560    tbm_surface_unmap (surface);
561    tbm_surface_destroy (surface);
562    @endcode
563  */
564 int tbm_surface_map (tbm_surface_h surface, int opt, tbm_surface_info_s *info);
565
566 /**
567  * @brief Unmaps the tbm_surface.
568  * @since_tizen 2.3
569  * @param[in] surface : the tbm_surface_h
570  * @return #TBM_SURFACE_ERROR_NONE if this function succeeds, otherwise error status value
571  * @retval #TBM_SURFACE_ERROR_NONE
572  * @retval #TBM_SURFACE_ERROR_INVALID_PARAMETER
573  * @see tbm_surface_map()
574  * @par Example
575    @code
576    #include <tbm_surface.h>
577
578    tbm_surface_h surface;
579    tbm_surface_info_s info;
580    int ret;
581
582    surface = tbm_surface_create (128, 128, TBM_FORMAT_RGB332);
583    ret = tbm_surface_map (surface, TBM_SURF_OPTION_WRITE|TBM_SURF_OPTION_READ, &info);
584
585    ...
586
587    tbm_surface_unmap (surface);
588    tbm_surface_destroy (surface);
589    @endcode
590  */
591 int tbm_surface_unmap (tbm_surface_h surface);
592
593 /**
594  * @brief Gets the information of the tbm_surface.
595  * @details The information of tbm_surface is assigned in #tbm_surface_info_s struct.\n
596  * The information of tbm_surface has width, height, format, bpp, size, number of planes and information of planes.\n
597  * The information of planes has stride, offset, size and pointer of plane.
598  * @since_tizen 2.3
599  * @param[in] surface : the tbm_surface_h
600  * @param[out] *info : the infomation of the tbm_surface
601  * @return #TBM_SURFACE_ERROR_NONE if this function succeeds, otherwise error status value
602  * @retval #TBM_SURFACE_ERROR_NONE
603  * @retval #TBM_SURFACE_ERROR_INVALID_PARAMETER
604  * @retval #TBM_SURFACE_ERROR_INVALID_OPERATION
605  * @see tbm_surface_map()
606  * @par Example
607    @code
608    #include <tbm_surface.h>
609
610    tbm_surface_h surface;
611    tbm_surface_info_s info;
612    int ret;
613
614    surface = tbm_surface_create (128, 128, TBM_FORMAT_RGB332);
615    ret = tbm_surface_get_info (surface, &info);
616
617    ...
618
619    tbm_surface_destroy (surface);
620    @endcode
621  */
622 int tbm_surface_get_info (tbm_surface_h surface, tbm_surface_info_s *info);
623
624 /**
625  * @brief Gets the width of the tbm_surface.
626  * @since_tizen 2.3
627  * @param[in] surface : the tbm_surface_h
628  * @return the width of the tbm_surface if this function succeeds, otherwise error status value
629  * @retval #TBM_SURFACE_ERROR_INVALID_PARAMETER
630  * @par Example
631    @code
632    #include <tbm_surface.h>
633
634    tbm_surface_h surface;
635    int width;
636
637    surface = tbm_surface_create (128, 128, TBM_FORMAT_RGB332);
638
639    ...
640
641    width = tbm_surface_get_width (surface);
642
643    ...
644
645    tbm_surface_destroy (surface);
646    @endcode
647  */
648 int tbm_surface_get_width (tbm_surface_h surface);
649
650 /**
651  * @brief Gets the height of the tbm_surface.
652  * @since_tizen 2.3
653  * @param[in] surface : the tbm_surface_h
654  * @return the height of the tbm_surface if this function succeeds, otherwise error status value
655  * @retval #TBM_SURFACE_ERROR_INVALID_PARAMETER
656  * @par Example
657    @code
658    #include <tbm_surface.h>
659
660    tbm_surface_h surface;
661    int height;
662
663    surface = tbm_surface_create (128, 128, TBM_FORMAT_RGB332);
664
665    ...
666
667    height = tbm_surface_get_height (surface);
668
669    ...
670
671    tbm_surface_destroy (surface);
672    @endcode
673  */
674 int tbm_surface_get_height (tbm_surface_h surface);
675
676 /**
677  * @brief Gets the format of the tbm_surface.
678  * @since_tizen 2.3
679  * @remark The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
680  * @param[in] surface : the tbm_surface_h
681  * @return the format of the tbm_surface if this function succeeds, otherwise 0
682  * @retval #tbm_format
683  * @exception #TBM_SURFACE_ERROR_NONE Success
684  * @exception #TBM_SURFACE_ERROR_INVALID_PARAMETER  Invalid parameter
685  * @par Example
686    @code
687    #include <tbm_surface.h>
688
689    tbm_surface_s surface;
690    tbm_format format;
691
692    surface = tbm_surface_create (128, 128, TBM_FORMAT_RGB332);
693
694    ...
695
696    format = tbm_surface_get_format (surface);
697
698    ...
699
700    tbm_surface_destroy (surface);
701    @endcode
702  */
703 tbm_format tbm_surface_get_format (tbm_surface_h surface);
704
705 #ifdef __cplusplus
706 }
707 #endif
708
709 /**
710 * @}
711 */
712
713 #endif /* _TBM_SURFACE_H_ */
714