Merge "Updated all code to new format" into 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) 2021 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 struct Sampler
30 {
31   using FilterMode = Dali::FilterMode::Type;
32   using WrapMode   = Dali::WrapMode::Type;
33
34   /**
35    * Constructor
36    */
37   Sampler()
38   : mMinificationFilter(FilterMode::DEFAULT),
39     mMagnificationFilter(FilterMode::DEFAULT),
40     mSWrapMode(WrapMode::DEFAULT),
41     mTWrapMode(WrapMode::DEFAULT),
42     mRWrapMode(WrapMode::DEFAULT)
43   {
44   }
45
46   /**
47    * Destructor
48    */
49   ~Sampler() = default;
50
51   bool operator==(const Sampler& rhs) const
52   {
53     return ((mMinificationFilter == rhs.mMinificationFilter) &&
54             (mMagnificationFilter == rhs.mMagnificationFilter) &&
55             (mSWrapMode == rhs.mSWrapMode) &&
56             (mTWrapMode == rhs.mTWrapMode) &&
57             (mRWrapMode == rhs.mRWrapMode));
58   }
59
60   bool operator!=(const Sampler& rhs) const
61   {
62     return !(*this == rhs);
63   }
64
65   FilterMode mMinificationFilter : 4;  ///< The minify filter
66   FilterMode mMagnificationFilter : 4; ///< The magnify filter
67   WrapMode   mSWrapMode : 4;           ///< The horizontal wrap mode
68   WrapMode   mTWrapMode : 4;           ///< The vertical wrap mode
69   WrapMode   mRWrapMode : 4;           ///< The vertical wrap mode
70 };
71
72 } // namespace Render
73
74 } // namespace Internal
75
76 } // namespace Dali
77
78 #endif //  DALI_INTERNAL_RENDER_SAMPLER_H