use modern construct '= default' for special functions.
[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() = default;
33
34 Sampler::~Sampler() = default;
35
36 Sampler::Sampler(const Sampler& handle) = default;
37
38 Sampler Sampler::DownCast(BaseHandle handle)
39 {
40   return Sampler(dynamic_cast<Dali::Internal::Sampler*>(handle.GetObjectPtr()));
41 }
42
43 Sampler& Sampler::operator=(const Sampler& handle) = default;
44
45 Sampler::Sampler(Sampler&& rhs) = default;
46
47 Sampler& Sampler::operator=(Sampler&& rhs) = default;
48
49 void Sampler::SetFilterMode(FilterMode::Type minFilter, FilterMode::Type magFilter)
50 {
51   GetImplementation(*this).SetFilterMode(minFilter, magFilter);
52 }
53
54 void Sampler::SetWrapMode(WrapMode::Type uWrap, WrapMode::Type vWrap)
55 {
56   GetImplementation(*this).SetWrapMode(uWrap, uWrap, vWrap);
57 }
58
59 void Sampler::SetWrapMode(WrapMode::Type rWrap, WrapMode::Type sWrap, WrapMode::Type tWrap)
60 {
61   GetImplementation(*this).SetWrapMode(rWrap, sWrap, tWrap);
62 }
63
64 Sampler::Sampler(Internal::Sampler* pointer)
65 : BaseHandle(pointer)
66 {
67 }
68
69 } //namespace Dali