Removed GeometryType from ShaderEffect and ShaderSubType
[platform/core/uifw/dali-core.git] / dali / public-api / shader-effects / sampler.cpp
1 /*
2  * Copyright (c) 2015 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/shader-effects/sampler.h>  // Dali::Sampler
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/event/effects/sampler-impl.h> // Dali::Internal::Sampler
23
24 namespace Dali
25 {
26
27 Sampler Sampler::New( Image& image, const std::string& textureUnitUniformName )
28 {
29   Internal::SamplerPtr sampler = Internal::Sampler::New(textureUnitUniformName);
30   Internal::ImagePtr imagePtr = &GetImplementation( image );
31   sampler->SetImage( imagePtr );
32   return Sampler( sampler.Get() );
33 }
34
35 Sampler::Sampler()
36 {
37 }
38
39 Sampler::~Sampler()
40 {
41 }
42
43 Sampler::Sampler( const Sampler& handle )
44 : Handle( handle )
45 {
46 }
47
48 Sampler Sampler::DownCast( BaseHandle handle )
49 {
50   return Sampler( dynamic_cast<Dali::Internal::Sampler*>(handle.GetObjectPtr()));
51 }
52
53 Sampler& Sampler::operator=( const Sampler& handle )
54 {
55   BaseHandle::operator=( handle );
56   return *this;
57 }
58
59 void Sampler::SetUniformName( const std::string& name )
60 {
61   GetImplementation(*this).SetTextureUnitUniformName( name );
62 }
63
64 void Sampler::SetImage( Image& image )
65 {
66   Internal::ImagePtr imagePtr = &GetImplementation( image );
67   GetImplementation(*this).SetImage( imagePtr );
68 }
69
70 Image Sampler::GetImage() const
71 {
72   Internal::ImagePtr imagePtr( GetImplementation(*this).GetImage() );
73   return Dali::Image( imagePtr.Get() );
74 }
75
76 void Sampler::SetFilterMode( FilterMode minFilter, FilterMode magFilter )
77 {
78   GetImplementation(*this).SetFilterMode( minFilter, magFilter );
79 }
80
81 void Sampler::SetWrapMode( WrapMode uWrap, WrapMode vWrap )
82 {
83   GetImplementation(*this).SetWrapMode( uWrap, vWrap );
84 }
85
86 void Sampler::SetAffectsTransparency( bool affectsTransparency )
87 {
88   GetImplementation(*this).SetAffectsTransparency( affectsTransparency );
89 }
90
91 Sampler::Sampler(Internal::Sampler* pointer)
92 : Handle( pointer )
93 {
94 }
95
96 } //namespace Dali