-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathByteExtensionMethods.cs
More file actions
139 lines (124 loc) · 4.84 KB
/
ByteExtensionMethods.cs
File metadata and controls
139 lines (124 loc) · 4.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/**
* Copyright(c) Live2D Inc. All rights reserved.
*
* Use of this source code is governed by the Live2D Open Software license
* that can be found at https://www.live2d.com/eula/live2d-open-software-license-agreement_en.html.
*/
/* THIS FILE WAS AUTO-GENERATED. ALL CHANGES WILL BE LOST UPON RE-GENERATION. */
namespace Live2D.Cubism.Core.Unmanaged
{
/// <summary>
/// <see cref="byte"/> extensions.
/// </summary>
internal static class ByteExtensionMethods
{
/// <summary>
/// Checks whether flag is set.
/// </summary>
/// <param name="self">Bit field.</param>
/// <returns><see langword="true"/> if bit is set; <see langword="false"/> otherwise.</returns>
public static bool HasBlendAdditiveFlag(this byte self)
{
return (self & (1 << 0)) == (1 << 0);
}
/// <summary>
/// Checks whether flag is set.
/// </summary>
/// <param name="self">Bit field.</param>
/// <returns><see langword="true"/> if bit is set; <see langword="false"/> otherwise.</returns>
public static bool HasBlendMultiplicativeFlag(this byte self)
{
return (self & (1 << 1)) == (1 << 1);
}
/// <summary>
/// Checks whether flag is set.
/// </summary>
/// <param name="self">Bit field.</param>
/// <returns><see langword="true"/> if bit is set; <see langword="false"/> otherwise.</returns>
public static bool HasIsDoubleSidedFlag(this byte self)
{
return (self & (1 << 2)) == (1 << 2);
}
/// <summary>
/// Checks whether flag is set.
/// </summary>
/// <param name="self">Bit field.</param>
/// <returns><see langword="true"/> if bit is set; <see langword="false"/> otherwise.</returns>
public static bool HasIsInvertedMaskFlag(this byte self)
{
return (self & (1 << 3)) == (1 << 3);
}
/// <summary>
/// Checks whether flag is set.
/// </summary>
/// <param name="self">Bit field.</param>
/// <returns><see langword="true"/> if bit is set; <see langword="false"/> otherwise.</returns>
public static bool HasIsVisibleFlag(this byte self)
{
return (self & (1 << 0)) == (1 << 0);
}
/// <summary>
/// Checks whether flag is set.
/// </summary>
/// <param name="self">Bit field.</param>
/// <returns><see langword="true"/> if bit is set; <see langword="false"/> otherwise.</returns>
public static bool HasVisibilityDidChangeFlag(this byte self)
{
return (self & (1 << 1)) == (1 << 1);
}
/// <summary>
/// Checks whether flag is set.
/// </summary>
/// <param name="self">Bit field.</param>
/// <returns><see langword="true"/> if bit is set; <see langword="false"/> otherwise.</returns>
public static bool HasOpacityDidChangeFlag(this byte self)
{
return (self & (1 << 2)) == (1 << 2);
}
/// <summary>
/// Checks whether flag is set.
/// </summary>
/// <param name="self">Bit field.</param>
/// <returns><see langword="true"/> if bit is set; <see langword="false"/> otherwise.</returns>
public static bool HasDrawOrderDidChangeFlag(this byte self)
{
return (self & (1 << 3)) == (1 << 3);
}
/// <summary>
/// Checks whether flag is set.
/// </summary>
/// <param name="self">Bit field.</param>
/// <returns><see langword="true"/> if bit is set; <see langword="false"/> otherwise.</returns>
public static bool HasRenderOrderDidChangeFlag(this byte self)
{
return (self & (1 << 4)) == (1 << 4);
}
/// <summary>
/// Checks whether flag is set.
/// </summary>
/// <param name="self">Bit field.</param>
/// <returns><see langword="true"/> if bit is set; <see langword="false"/> otherwise.</returns>
public static bool HasVertexPositionsDidChangeFlag(this byte self)
{
return (self & (1 << 5)) == (1 << 5);
}
/// <summary>
/// Checks whether flag is set.
/// </summary>
/// <param name="self">Bit field.</param>
/// <returns><see langword="true"/> if bit is set; <see langword="false"/> otherwise.</returns>
public static bool HasBlendColorDidChangeFlag(this byte self)
{
return (self & (1 << 6)) == (1 << 6);
}
/// <summary>
/// Mask DidChageFlag. without IsVisivble flag.
/// </summary>
/// <param name="self"></param>
/// <returns></returns>
public static byte MaskDidChangeFlag(this byte self)
{
return (byte)(self & ~(1 << 0));
}
}
}