1 /**************************************************************************
5 Copyright 2014 Samsung Electronics co., Ltd. All Rights Reserved.
7 Contact: SooChan Lim <sc1.lim@samsung.com>, Sangjin Lee <lsj119@samsung.com>
8 Boram Park <boram1288.park@samsung.com>, Changyeon Lee <cyeon.lee@samsung.com>
10 Permission is hereby granted, free of charge, to any person obtaining a
11 copy of this software and associated documentation files (the
12 "Software"), to deal in the Software without restriction, including
13 without limitation the rights to use, copy, modify, merge, publish,
14 distribute, sub license, and/or sell copies of the Software, and to
15 permit persons to whom the Software is furnished to do so, subject to
16 the following conditions:
18 The above copyright notice and this permission notice (including the
19 next paragraph) shall be included in all copies or substantial portions
22 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
23 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
25 IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
26 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
27 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
28 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 **************************************************************************/
34 #include "tbm_bufmgr.h"
35 #include "tbm_bufmgr_int.h"
36 #include "tbm_surface_internal.h"
39 tbm_surface_query_formats(uint32_t **formats, uint32_t *num)
41 TBM_TRACE_SURFACE("\n");
43 if (!tbm_surface_internal_query_supported_formats(formats, num))
44 return tbm_get_last_error();
46 return TBM_SURFACE_ERROR_NONE;
50 tbm_surface_create(int width, int height, tbm_format format)
52 TBM_TRACE_SURFACE("width(%d) height(%d)\n", width, height);
54 _tbm_set_last_result(TBM_ERROR_NONE);
56 if (!(width > 0) || !(height > 0)) {
57 #ifdef HAVE_CAPI_0_1_1
58 set_last_result(TBM_SURFACE_ERROR_INVALID_PARAMETER);
60 _tbm_set_last_result(TBM_ERROR_INVALID_PARAMETER);
64 struct _tbm_surface *surf = NULL;
66 surf = tbm_surface_internal_create_with_flags(width, height, format,
69 #ifdef HAVE_CAPI_0_1_1
70 set_last_result(TBM_SURFACE_ERROR_INVALID_OPERATION);
75 #ifdef HAVE_CAPI_0_1_1
76 set_last_result(TBM_SURFACE_ERROR_NONE);
83 tbm_surface_destroy(tbm_surface_h surface)
85 TBM_TRACE_SURFACE("tbm_surface(%p)\n", surface);
87 TBM_RETURN_VAL_IF_FAIL(surface, TBM_SURFACE_ERROR_INVALID_PARAMETER);
89 tbm_surface_internal_destroy(surface);
91 return tbm_get_last_error();
95 tbm_surface_map(tbm_surface_h surface, int opt, tbm_surface_info_s *info)
97 TBM_TRACE_SURFACE("tbm_surface(%p)\n", surface);
99 TBM_RETURN_VAL_IF_FAIL(surface, TBM_SURFACE_ERROR_INVALID_PARAMETER);
100 TBM_RETURN_VAL_IF_FAIL(info != NULL, TBM_SURFACE_ERROR_INVALID_PARAMETER);
104 ret = tbm_surface_internal_get_info(surface, opt, info, 1);
106 return tbm_get_last_error();
108 return TBM_SURFACE_ERROR_NONE;
112 tbm_surface_unmap(tbm_surface_h surface)
114 TBM_TRACE_SURFACE("tbm_surface(%p)\n", surface);
116 TBM_RETURN_VAL_IF_FAIL(surface, TBM_SURFACE_ERROR_INVALID_PARAMETER);
118 tbm_surface_internal_unmap(surface);
120 return tbm_get_last_error();
124 tbm_surface_get_info(tbm_surface_h surface, tbm_surface_info_s *info)
126 TBM_TRACE_SURFACE("tbm_surface(%p)\n", surface);
128 TBM_RETURN_VAL_IF_FAIL(surface, TBM_SURFACE_ERROR_INVALID_PARAMETER);
129 TBM_RETURN_VAL_IF_FAIL(info != NULL, TBM_SURFACE_ERROR_INVALID_PARAMETER);
133 ret = tbm_surface_internal_get_info(surface, 0, info, 0);
135 return tbm_get_last_error();
137 return TBM_SURFACE_ERROR_NONE;
141 tbm_surface_get_width(tbm_surface_h surface)
143 TBM_TRACE_SURFACE("tbm_surface(%p)\n", surface);
147 _tbm_set_last_result(TBM_ERROR_NONE);
150 #ifdef HAVE_CAPI_0_1_1
151 set_last_result(TBM_SURFACE_ERROR_INVALID_PARAMETER);
153 _tbm_set_last_result(TBM_ERROR_INVALID_PARAMETER);
154 return TBM_SURFACE_ERROR_INVALID_PARAMETER;
157 width = tbm_surface_internal_get_width(surface);
158 if (tbm_get_last_error() != TBM_ERROR_NONE) {
159 #ifdef HAVE_CAPI_0_1_1
160 set_last_result(TBM_SURFACE_ERROR_INVALID_PARAMETER);
162 return TBM_SURFACE_ERROR_INVALID_PARAMETER;
165 #ifdef HAVE_CAPI_0_1_1
166 set_last_result(TBM_SURFACE_ERROR_NONE);
173 tbm_surface_get_height(tbm_surface_h surface)
175 TBM_TRACE_SURFACE("tbm_surface(%p)\n", surface);
179 _tbm_set_last_result(TBM_ERROR_NONE);
182 #ifdef HAVE_CAPI_0_1_1
183 set_last_result(TBM_SURFACE_ERROR_INVALID_PARAMETER);
185 _tbm_set_last_result(TBM_ERROR_INVALID_PARAMETER);
186 return TBM_SURFACE_ERROR_INVALID_PARAMETER;
189 height = tbm_surface_internal_get_height(surface);
190 if (tbm_get_last_error() != TBM_ERROR_NONE) {
191 #ifdef HAVE_CAPI_0_1_1
192 set_last_result(TBM_SURFACE_ERROR_INVALID_PARAMETER);
194 return TBM_SURFACE_ERROR_INVALID_PARAMETER;
197 #ifdef HAVE_CAPI_0_1_1
198 set_last_result(TBM_SURFACE_ERROR_NONE);
205 tbm_surface_get_format(tbm_surface_h surface)
207 TBM_TRACE_SURFACE("tbm_surface(%p)\n", surface);
209 _tbm_set_last_result(TBM_ERROR_NONE);
212 #ifdef HAVE_CAPI_0_1_1
213 set_last_result(TBM_SURFACE_ERROR_INVALID_PARAMETER);
215 _tbm_set_last_result(TBM_ERROR_INVALID_PARAMETER);
219 #ifdef HAVE_CAPI_0_1_1
220 set_last_result(TBM_SURFACE_ERROR_NONE);
223 return tbm_surface_internal_get_format(surface);