bump up version 1.1.4
[platform/core/uifw/libtbm.git] / src / tbm_surface.c
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 Boram Park <boram1288.park@samsung.com>, Changyeon Lee <cyeon.lee@samsung.com>
9
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:
17
18 The above copyright notice and this permission notice (including the
19 next paragraph) shall be included in all copies or substantial portions
20 of the Software.
21
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.
29
30 **************************************************************************/
31
32 #include "config.h"
33 #include "tbm_bufmgr.h"
34 #include "tbm_bufmgr_int.h"
35 #include "tbm_surface_internal.h"
36
37 int
38 tbm_surface_query_formats (uint32_t **formats, uint32_t *num)
39 {
40     if (!tbm_surface_internal_query_supported_formats (formats, num))
41         return TBM_SURFACE_ERROR_INVALID_OPERATION;
42
43     return TBM_SURFACE_ERROR_NONE;
44 }
45
46 tbm_surface_h
47 tbm_surface_create (int width, int height, tbm_format format)
48 {
49     if (!(width > 0) || !(height > 0))
50     {
51 #ifdef HAVE_CAPI_0_1_1
52         set_last_result (TBM_SURFACE_ERROR_INVALID_PARAMETER);
53 #endif
54         return NULL;
55     }
56
57     struct _tbm_surface *surf = NULL;
58
59     surf = tbm_surface_internal_create_with_flags (width, height, format, TBM_BO_DEFAULT);
60     if (!surf)
61     {
62 #ifdef HAVE_CAPI_0_1_1
63         set_last_result (TBM_SURFACE_ERROR_INVALID_OPERATION);
64 #endif
65         return NULL;
66     }
67
68 #ifdef HAVE_CAPI_0_1_1
69     set_last_result (TBM_SURFACE_ERROR_NONE);
70 #endif
71     return surf;
72 }
73
74
75 int
76 tbm_surface_destroy (tbm_surface_h surface)
77 {
78     if (!surface)
79         return TBM_SURFACE_ERROR_INVALID_PARAMETER;
80
81     tbm_surface_internal_destroy (surface);
82
83     return TBM_SURFACE_ERROR_NONE;
84 }
85
86 int
87 tbm_surface_map (tbm_surface_h surface, int opt, tbm_surface_info_s *info)
88 {
89     TBM_RETURN_VAL_IF_FAIL (surface != NULL, TBM_SURFACE_ERROR_INVALID_PARAMETER);
90     TBM_RETURN_VAL_IF_FAIL (info != NULL, TBM_SURFACE_ERROR_INVALID_PARAMETER);
91
92     int ret = 0;
93
94     ret = tbm_surface_internal_get_info (surface, opt, info, 1);
95     if (ret == 0)
96         return TBM_SURFACE_ERROR_INVALID_OPERATION;
97
98     return TBM_SURFACE_ERROR_NONE;
99 }
100
101 int
102 tbm_surface_unmap (tbm_surface_h surface)
103 {
104     TBM_RETURN_VAL_IF_FAIL (surface != NULL, TBM_SURFACE_ERROR_INVALID_PARAMETER);
105
106     tbm_surface_internal_unmap(surface);
107
108     return TBM_SURFACE_ERROR_NONE;
109 }
110
111 int
112 tbm_surface_get_info (tbm_surface_h surface, tbm_surface_info_s *info)
113 {
114     TBM_RETURN_VAL_IF_FAIL (surface != NULL, TBM_SURFACE_ERROR_INVALID_PARAMETER);
115     TBM_RETURN_VAL_IF_FAIL (info != NULL, TBM_SURFACE_ERROR_INVALID_PARAMETER);
116
117     int ret = 0;
118
119     ret = tbm_surface_internal_get_info (surface, 0, info, 0);
120     if (ret == 0)
121         return TBM_SURFACE_ERROR_INVALID_OPERATION;
122
123     return TBM_SURFACE_ERROR_NONE;
124 }
125
126 int
127 tbm_surface_get_width (tbm_surface_h surface)
128 {
129     TBM_RETURN_VAL_IF_FAIL (surface != NULL, TBM_SURFACE_ERROR_INVALID_PARAMETER);
130
131     return tbm_surface_internal_get_width(surface);
132 }
133
134 int
135 tbm_surface_get_height (tbm_surface_h surface)
136 {
137     TBM_RETURN_VAL_IF_FAIL (surface != NULL, TBM_SURFACE_ERROR_INVALID_PARAMETER);
138
139     return tbm_surface_internal_get_height(surface);
140 }
141
142 tbm_format
143 tbm_surface_get_format (tbm_surface_h surface)
144 {
145     if (!surface)
146     {
147 #ifdef HAVE_CAPI_0_1_1
148         set_last_result (TBM_SURFACE_ERROR_INVALID_PARAMETER);
149 #endif
150         return 0;
151     }
152
153 #ifdef HAVE_CAPI_0_1_1
154     set_last_result (TBM_SURFACE_ERROR_NONE);
155 #endif
156     return tbm_surface_internal_get_format(surface);
157 }
158