Rename of Control Renderers to Visuals
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / renderers / visual-data-impl.h
1 #ifndef DALI_TOOLKIT_INTERNAL_CONTROL_RENDERER_DATA_IMPL_H
2 #define DALI_TOOLKIT_INTERNAL_CONTROL_RENDERER_DATA_IMPL_H
3
4 /*
5  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/math/vector2.h>
23 #include <dali/public-api/rendering/renderer.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/internal/controls/renderers/visual-impl.h>
27
28 namespace Dali
29 {
30
31 namespace Toolkit
32 {
33
34 namespace Internal
35 {
36
37 struct Internal::Visual::Impl
38 {
39   enum Flags
40   {
41     IS_ON_STAGE = 1,
42     IS_FROM_CACHE = 1 << 1,
43     IS_PREMULTIPLIED_ALPHA = 1 << 2,
44     IS_SYNCHRONOUS_RESOURCE_LOADING = 1 << 3
45   };
46
47   struct CustomShader
48   {
49     std::string mVertexShader;
50     std::string mFragmentShader;
51     Dali::ImageDimensions mGridSize;
52     Dali::Shader::ShaderHints mHints; //(bitfield) values from enum Shader::Hints
53
54     CustomShader( const Property::Map& map );
55     void SetPropertyMap( const Property::Map& map );
56     void CreatePropertyMap( Property::Map& map ) const;
57   };
58
59   Renderer mRenderer;
60
61   CustomShader* mCustomShader;
62
63   Vector2   mSize;
64   Vector2   mOffset;
65   float     mDepthIndex;
66   int       mFlags;
67
68   Impl();
69   ~Impl();
70 };
71
72 } // namespace Internal
73
74 } // namespace Toolkit
75
76 } // namespace Dali
77
78 #endif // DALI_TOOLKIT_INTERNAL_CONTROL_RENDERER_DATA_IMPL_H