Cleaning up Visual::Base
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / visuals / visual-base-data-impl.h
1 #ifndef DALI_TOOLKIT_INTERNAL_VISUAL_BASE_DATA_IMPL_H
2 #define DALI_TOOLKIT_INTERNAL_VISUAL_BASE_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/visuals/visual-base-impl.h>
27
28 namespace Dali
29 {
30
31 namespace Toolkit
32 {
33
34 namespace Internal
35 {
36
37 namespace Visual
38 {
39
40 struct Base::Impl
41 {
42   enum Flags
43   {
44     IS_ON_STAGE = 1,
45     IS_FROM_CACHE = 1 << 1,
46     IS_ATLASING_APPLIED = 1<<2,
47     IS_PREMULTIPLIED_ALPHA = 1 << 3,
48     IS_SYNCHRONOUS_RESOURCE_LOADING = 1 << 4
49   };
50
51   struct CustomShader
52   {
53     std::string mVertexShader;
54     std::string mFragmentShader;
55     Dali::ImageDimensions mGridSize;
56     Dali::Shader::Hint::Value mHints; //(bitfield) values from enum Shader::Hint
57
58     CustomShader( const Property::Map& map );
59     void SetPropertyMap( const Property::Map& map );
60     void CreatePropertyMap( Property::Map& map ) const;
61   };
62
63   Renderer mRenderer;
64
65   CustomShader* mCustomShader;
66
67   Vector2   mSize;
68   float     mDepthIndex;
69   int       mFlags;
70
71   Impl();
72   ~Impl();
73 };
74
75 } // namespace Visual
76
77 } // namespace Internal
78
79 } // namespace Toolkit
80
81 } // namespace Dali
82
83 #endif // DALI_TOOLKIT_INTERNAL_VISUAL_BASE_DATA_IMPL_H