c5040aee7d5c45973f02d622e2cea4f97897da2a
[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   bool operator==(const Sampler& rhs) const
54   {
55     return ( ( mMinificationFilter == rhs.mMinificationFilter ) &&
56              ( mMagnificationFilter == rhs.mMagnificationFilter ) &&
57              ( mSWrapMode == rhs.mSWrapMode ) &&
58              ( mTWrapMode == rhs.mTWrapMode ) &&
59              ( mRWrapMode == rhs.mRWrapMode ) );
60   }
61
62   bool operator!=(const Sampler& rhs) const
63   {
64     return !(*this == rhs);
65   }
66
67   FilterMode  mMinificationFilter   : 4;    ///< The minify filter
68   FilterMode  mMagnificationFilter  : 4;    ///< The magnify filter
69   WrapMode    mSWrapMode            : 4;    ///< The horizontal wrap mode
70   WrapMode    mTWrapMode            : 4;    ///< The vertical wrap mode
71   WrapMode    mRWrapMode            : 4;    ///< The vertical wrap mode
72 };
73
74 } // namespace Render
75
76 } // namespace Internal
77
78 } // namespace Dali
79
80
81 #endif //  DALI_INTERNAL_RENDER_SAMPLER_H