Tizen 2.1 base
[framework/osp/uifw.git] / src / ui / effects / inc / renderer / engine-model / FUiEffects_RendererEngineModelProgramProperty.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Flora License, Version 1.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://floralicense.org/license/
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an AS IS BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file                FUiEffects_RendererEngineModelProgramProperty.h
20  * @brief               Shader property for material
21  *
22  */
23
24 #ifndef _FUI_EFFECTS_INTERNAL_RENDERER_ENGINE_MODEL_PROGRAM_PROPERTY_H_
25 #define _FUI_EFFECTS_INTERNAL_RENDERER_ENGINE_MODEL_PROGRAM_PROPERTY_H_
26
27 #include <renderer/engine-model/FUiEffects_RendererEngineModelForwardDeclaration.h>
28 #include <renderer/engine-model/FUiEffects_RendererEngineModelCache.h>
29 #include <renderer/engine-model/FUiEffects_RendererEngineModelPropertyVisitor.h>
30 #include <renderer/engine-model/FUiEffects_RendererEngineModelProperty.h>
31 #include <renderer/engine-model/FUiEffects_RendererEngineModelShaderProperty.h>
32
33 #include <string>
34
35 namespace Tizen { namespace Ui { namespace Effects { namespace _Renderer { namespace EngineModel
36 {
37
38 class ProgramProperty:
39         public Property
40 {
41 public:
42         virtual void Visit(PropertyVisitor& v) {v.OnProgramProperty(*this);}
43
44         ProgramProperty(void) {}
45         virtual ~ProgramProperty()
46         {
47                 if (__pCache)
48                 {
49                         __pCache->Die();
50                 }
51         }
52
53         virtual ShaderPropertyPtr GetShader(ShaderProperty::ShaderType::Value type) = 0;
54
55         virtual CachePtr GetCache(void)
56         {
57                 return __pCache;
58         }
59         virtual void SetCache(CachePtr pCache)
60         {
61                 if (__pCache)
62                 {
63                         __pCache->Die();
64                 }
65                 __pCache = pCache;
66                 return;
67         }
68
69 private:
70         CachePtr __pCache;
71 };
72
73 typedef Tizen::Ui::Effects::_Renderer::System::SmartPtr<ProgramProperty> ProgramPropertyPtr;
74
75 }}}}} //Tizen::Ui::Effects::_Renderer::EngineModel
76
77 #endif //_FUI_EFFECTS_INTERNAL_RENDERER_ENGINE_MODEL_PROGRAM_PROPERTY_H_