[dali_1.2.28] Merge branch 'devel/master'
[platform/core/uifw/dali-core.git] / dali / public-api / rendering / sampler.cpp
1 /*
2  * Copyright (c) 2016 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 )
42 : BaseHandle( handle )
43 {
44 }
45
46 Sampler Sampler::DownCast( BaseHandle handle )
47 {
48   return Sampler( dynamic_cast<Dali::Internal::Sampler*>(handle.GetObjectPtr()));
49 }
50
51 Sampler& Sampler::operator=( const Sampler& handle )
52 {
53   BaseHandle::operator=( handle );
54   return *this;
55 }
56
57
58 void Sampler::SetFilterMode( FilterMode::Type minFilter, FilterMode::Type magFilter )
59 {
60   GetImplementation(*this).SetFilterMode( minFilter, magFilter );
61 }
62
63 void Sampler::SetWrapMode( WrapMode::Type uWrap, WrapMode::Type vWrap )
64 {
65   GetImplementation(*this).SetWrapMode( uWrap, uWrap, vWrap );
66 }
67
68 void Sampler::SetWrapMode( WrapMode::Type rWrap, WrapMode::Type sWrap, WrapMode::Type tWrap )
69 {
70   GetImplementation(*this).SetWrapMode( rWrap, sWrap, tWrap );
71 }
72
73 Sampler::Sampler(Internal::Sampler* pointer)
74 : BaseHandle( pointer )
75 {
76 }
77
78 } //namespace Dali