Merge "Change the timing of Context::GlContextCreated()" into devel/master
[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
27 Sampler Sampler::New()
28 {
29   Internal::SamplerPtr sampler = Internal::Sampler::New();
30   return Sampler( sampler.Get() );
31 }
32
33 Sampler::Sampler()
34 {
35 }
36
37 Sampler::~Sampler()
38 {
39 }
40
41 Sampler::Sampler( const Sampler& handle ) = default;
42
43 Sampler Sampler::DownCast( BaseHandle handle )
44 {
45   return Sampler( dynamic_cast<Dali::Internal::Sampler*>(handle.GetObjectPtr()));
46 }
47
48 Sampler& Sampler::operator=( const Sampler& handle ) = default;
49
50 Sampler::Sampler( Sampler&& rhs ) =  default;
51
52 Sampler& Sampler::operator=( Sampler&& rhs ) =  default;
53
54 void Sampler::SetFilterMode( FilterMode::Type minFilter, FilterMode::Type magFilter )
55 {
56   GetImplementation(*this).SetFilterMode( minFilter, magFilter );
57 }
58
59 void Sampler::SetWrapMode( WrapMode::Type uWrap, WrapMode::Type vWrap )
60 {
61   GetImplementation(*this).SetWrapMode( uWrap, uWrap, vWrap );
62 }
63
64 void Sampler::SetWrapMode( WrapMode::Type rWrap, WrapMode::Type sWrap, WrapMode::Type tWrap )
65 {
66   GetImplementation(*this).SetWrapMode( rWrap, sWrap, tWrap );
67 }
68
69 Sampler::Sampler(Internal::Sampler* pointer)
70 : BaseHandle( pointer )
71 {
72 }
73
74 } //namespace Dali