Format whitespace

This commit is contained in:
Gabriel A 2023-10-27 21:27:59 -03:00
parent 29e9e90fe8
commit 419d61ef23
6 changed files with 8 additions and 8 deletions

View file

@ -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;

View file

@ -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;