Changed remaining image types to use Texture internally
[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) 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 #include <dali/public-api/actors/sampling.h>
21 #include <dali/public-api/rendering/sampler.h>
22
23 namespace Dali
24 {
25 namespace Internal
26 {
27 namespace Render
28 {
29
30 struct Sampler
31 {
32
33   typedef Dali::FilterMode::Type FilterMode;
34   typedef Dali::WrapMode::Type   WrapMode;
35
36   /**
37    * Constructor
38    */
39   Sampler()
40   :mMinificationFilter(FilterMode::DEFAULT),
41    mMagnificationFilter(FilterMode::DEFAULT),
42    mSWrapMode(WrapMode::DEFAULT),
43    mTWrapMode(WrapMode::DEFAULT),
44    mRWrapMode(WrapMode::DEFAULT)
45   {}
46
47   /**
48    * Destructor
49    */
50   ~Sampler()
51   {}
52
53
54   union
55   {
56     unsigned int mBitfield;
57
58     struct
59     {
60       FilterMode  mMinificationFilter   : 4;    ///< The minify filter
61       FilterMode  mMagnificationFilter  : 4;    ///< The magnify filter
62       WrapMode    mSWrapMode            : 4;    ///< The horizontal wrap mode
63       WrapMode    mTWrapMode            : 4;    ///< The vertical wrap mode
64       WrapMode    mRWrapMode            : 4;    ///< The vertical wrap mode
65     };
66
67   };
68 };
69
70 } // namespace Render
71
72 } // namespace Internal
73
74 } // namespace Dali
75
76
77 #endif //  DALI_INTERNAL_RENDER_SAMPLER_H