[NUI] Fixing the emtpy finalizers(CA1821)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / BlendEquationType.cs
1 /*
2  * Copyright(c) 2020 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 using System.ComponentModel;
19
20 namespace Tizen.NUI
21 {
22     /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
23     [EditorBrowsable (EditorBrowsableState.Never)]
24     public enum BlendEquationType
25     {
26         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
27         [EditorBrowsable (EditorBrowsableState.Never)]
28         Add = 0x8006,
29         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
30         [EditorBrowsable (EditorBrowsableState.Never)]
31         Subtract = 0x800A,
32         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
33         [EditorBrowsable (EditorBrowsableState.Never)]
34         ReverseSubtract = 0x800B,
35         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
36         [EditorBrowsable (EditorBrowsableState.Never)]
37         Min = 0x8007,
38         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
39         [EditorBrowsable (EditorBrowsableState.Never)]
40         Max = 0x8008,
41
42         //Advanced Blend Equation
43         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
44         [EditorBrowsable (EditorBrowsableState.Never)]
45         Multiply = 0x9294,
46         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
47         [EditorBrowsable (EditorBrowsableState.Never)]
48         Screen = 0x9295,
49         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
50         [EditorBrowsable (EditorBrowsableState.Never)]
51         Overlay = 0x9296,
52         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
53         [EditorBrowsable (EditorBrowsableState.Never)]
54         Darken = 0x9297,
55         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
56         [EditorBrowsable (EditorBrowsableState.Never)]
57         Lighten = 0x9298,
58         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
59         [EditorBrowsable (EditorBrowsableState.Never)]
60         ColorDodge = 0x9299,
61         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
62         [EditorBrowsable (EditorBrowsableState.Never)]
63         ColorBurn = 0x929A,
64         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
65         [EditorBrowsable (EditorBrowsableState.Never)]
66         HardLight = 0x929B,
67         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
68         [EditorBrowsable (EditorBrowsableState.Never)]
69         SoftLight = 0x929C,
70         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
71         [EditorBrowsable (EditorBrowsableState.Never)]
72         Difference = 0x929E,
73         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
74         [EditorBrowsable (EditorBrowsableState.Never)]
75         Exclusion = 0x92A0,
76         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
77         [EditorBrowsable (EditorBrowsableState.Never)]
78         Hue = 0x92AD,
79         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
80         [EditorBrowsable (EditorBrowsableState.Never)]
81         Saturation = 0x92AE,
82         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
83         [EditorBrowsable (EditorBrowsableState.Never)]
84         Color = 0x92AF,
85         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
86         [EditorBrowsable (EditorBrowsableState.Never)]
87         Luminosity = 0x92B0
88
89     }
90 }