mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-12 21:59:12 +00:00
Format whitespace
This commit is contained in:
parent
29e9e90fe8
commit
419d61ef23
6 changed files with 8 additions and 8 deletions
|
@ -31,7 +31,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||
public bool Set(int bit)
|
||||
{
|
||||
int wordIndex = bit / IntSize;
|
||||
int wordBit = bit & IntMask;
|
||||
int wordBit = bit & IntMask;
|
||||
|
||||
ulong wordMask = 1UL << wordBit;
|
||||
|
||||
|
@ -90,7 +90,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||
public void Clear(int bit)
|
||||
{
|
||||
int wordIndex = bit / IntSize;
|
||||
int wordBit = bit & IntMask;
|
||||
int wordBit = bit & IntMask;
|
||||
|
||||
ulong wordMask = 1UL << wordBit;
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ namespace Ryujinx.Graphics.OpenGL.Image
|
|||
EnsureCapacity(bit + 1);
|
||||
|
||||
int wordIndex = bit / IntSize;
|
||||
int wordBit = bit & IntMask;
|
||||
int wordBit = bit & IntMask;
|
||||
|
||||
ulong wordMask = 1UL << wordBit;
|
||||
|
||||
|
@ -70,7 +70,7 @@ namespace Ryujinx.Graphics.OpenGL.Image
|
|||
EnsureCapacity(bit + 1);
|
||||
|
||||
int wordIndex = bit / IntSize;
|
||||
int wordBit = bit & IntMask;
|
||||
int wordBit = bit & IntMask;
|
||||
|
||||
ulong wordMask = 1UL << wordBit;
|
||||
|
||||
|
|
Loading…
Reference in a new issue