[dali_1.1.38] Merge branch 'devel/master'
[platform/core/uifw/dali-core.git] / dali / internal / render / renderers / render-sampler.h
1 #ifndef DALI_INTERNAL_RENDER_SAMPLER_H
2 #define DALI_INTERNAL_RENDER_SAMPLER_H
3
4 /*
5  * Copyright (c) 2015 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 #include <dali/public-api/actors/sampling.h>
21 #include <dali/devel-api/rendering/sampler.h>
22 #include <dali/internal/render/renderers/render-sampler.h>
23
24 namespace Dali
25 {
26 namespace Internal
27 {
28 namespace Render
29 {
30
31 struct Sampler
32 {
33
34   typedef Dali::FilterMode::Type FilterMode;
35   typedef Dali::WrapMode::Type   WrapMode;
36
37   /**
38    * Constructor
39    */
40   Sampler()
41   :mMinificationFilter(FilterMode::DEFAULT),
42    mMagnificationFilter(FilterMode::DEFAULT),
43    mSWrapMode(WrapMode::DEFAULT),
44    mTWrapMode(WrapMode::DEFAULT),
45    mRWrapMode(WrapMode::DEFAULT)
46   {}
47
48   /**
49    * Destructor
50    */
51   ~Sampler()
52   {}
53
54
55   union
56   {
57     unsigned int mBitfield;
58
59     struct
60     {
61       FilterMode  mMinificationFilter   : 4;    ///< The minify filter
62       FilterMode  mMagnificationFilter  : 4;    ///< The magnify filter
63       WrapMode    mSWrapMode            : 4;    ///< The horizontal wrap mode
64       WrapMode    mTWrapMode            : 4;    ///< The vertical wrap mode
65       WrapMode    mRWrapMode            : 4;    ///< The vertical wrap mode
66     };
67
68   };
69 };
70
71 } // namespace Render
72
73 } // namespace Internal
74
75 } // namespace Dali
76
77
78 #endif //  DALI_INTERNAL_RENDER_SAMPLER_H