blob: 3a1d50cd47cd38851f7fca1ede5c8d315cb45efb (
plain) (
blame)
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
|
namespace Ryujinx.Graphics.Texture.Utils
{
struct Block
{
public ulong Low;
public ulong High;
public void Encode(ulong value, ref int offset, int bits)
{
if (offset >= 64)
{
High |= value << (offset - 64);
}
else
{
Low |= value << offset;
if (offset + bits > 64)
{
int remainder = 64 - offset;
High |= value >> remainder;
}
}
offset += bits;
}
public readonly ulong Decode(ref int offset, int bits)
{
ulong value;
ulong mask = bits == 64 ? ulong.MaxValue : (1UL << bits) - 1;
if (offset >= 64)
{
value = (High >> (offset - 64)) & mask;
}
else
{
value = Low >> offset;
if (offset + bits > 64)
{
int remainder = 64 - offset;
value |= High << remainder;
}
value &= mask;
}
offset += bits;
return value;
}
}
}
|