common: nothing was rendered after an empty masked node came across
[platform/core/graphics/tizenvg.git] / src / lib / tvgRadialGradient.cpp
1 /*
2  * Copyright (c) 2020-2021 Samsung Electronics Co., Ltd. All rights reserved.
3
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10
11  * The above copyright notice and this permission notice shall be included in all
12  * copies or substantial portions of the Software.
13
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20  * SOFTWARE.
21  */
22 #include <float.h>
23 #include "tvgFill.h"
24
25 /************************************************************************/
26 /* Internal Class Implementation                                        */
27 /************************************************************************/
28
29 struct RadialGradient::Impl
30 {
31     float cx = 0;
32     float cy = 0;
33     float radius = 0;
34
35     Fill* duplicate()
36     {
37         auto ret = RadialGradient::gen();
38         if (!ret) return nullptr;
39
40         ret->pImpl->cx = cx;
41         ret->pImpl->cy = cy;
42         ret->pImpl->radius = radius;
43
44         return ret.release();
45     }
46 };
47
48
49 /************************************************************************/
50 /* External Class Implementation                                        */
51 /************************************************************************/
52
53 RadialGradient::RadialGradient():pImpl(new Impl())
54 {
55     _id = TVG_CLASS_ID_RADIAL;
56     Fill::pImpl->method(new FillDup<RadialGradient::Impl>(pImpl));
57 }
58
59
60 RadialGradient::~RadialGradient()
61 {
62     delete(pImpl);
63 }
64
65
66 Result RadialGradient::radial(float cx, float cy, float radius) noexcept
67 {
68     if (radius < 0) return Result::InvalidArguments;
69
70     pImpl->cx = cx;
71     pImpl->cy = cy;
72     pImpl->radius = radius;
73
74     return Result::Success;
75 }
76
77
78 Result RadialGradient::radial(float* cx, float* cy, float* radius) const noexcept
79 {
80     if (cx) *cx = pImpl->cx;
81     if (cy) *cy = pImpl->cy;
82     if (radius) *radius = pImpl->radius;
83
84     return Result::Success;
85 }
86
87
88 unique_ptr<RadialGradient> RadialGradient::gen() noexcept
89 {
90     return unique_ptr<RadialGradient>(new RadialGradient);
91 }
92
93
94 uint32_t RadialGradient::identifier() noexcept
95 {
96     return TVG_CLASS_ID_RADIAL;
97 }