Clean up the code to build successfully on macOS
[platform/core/uifw/dali-core.git] / dali / public-api / rendering / sampler.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
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
18 // CLASS HEADER
19 #include <dali/public-api/rendering/sampler.h> // Dali::Sampler
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/event/rendering/sampler-impl.h> // Dali::Internal::Sampler
23
24 namespace Dali
25 {
26 Sampler Sampler::New()
27 {
28   Internal::SamplerPtr sampler = Internal::Sampler::New();
29   return Sampler(sampler.Get());
30 }
31
32 Sampler::Sampler()
33 {
34 }
35
36 Sampler::~Sampler()
37 {
38 }
39
40 Sampler::Sampler(const Sampler& handle) = default;
41
42 Sampler Sampler::DownCast(BaseHandle handle)
43 {
44   return Sampler(dynamic_cast<Dali::Internal::Sampler*>(handle.GetObjectPtr()));
45 }
46
47 Sampler& Sampler::operator=(const Sampler& handle) = default;
48
49 Sampler::Sampler(Sampler&& rhs) = default;
50
51 Sampler& Sampler::operator=(Sampler&& rhs) = default;
52
53 void Sampler::SetFilterMode(FilterMode::Type minFilter, FilterMode::Type magFilter)
54 {
55   GetImplementation(*this).SetFilterMode(minFilter, magFilter);
56 }
57
58 void Sampler::SetWrapMode(WrapMode::Type uWrap, WrapMode::Type vWrap)
59 {
60   GetImplementation(*this).SetWrapMode(uWrap, uWrap, vWrap);
61 }
62
63 void Sampler::SetWrapMode(WrapMode::Type rWrap, WrapMode::Type sWrap, WrapMode::Type tWrap)
64 {
65   GetImplementation(*this).SetWrapMode(rWrap, sWrap, tWrap);
66 }
67
68 Sampler::Sampler(Internal::Sampler* pointer)
69 : BaseHandle(pointer)
70 {
71 }
72
73 } //namespace Dali