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)
|
public bool Set(int bit)
|
||||||
{
|
{
|
||||||
int wordIndex = bit / IntSize;
|
int wordIndex = bit / IntSize;
|
||||||
int wordBit = bit & IntMask;
|
int wordBit = bit & IntMask;
|
||||||
|
|
||||||
ulong wordMask = 1UL << wordBit;
|
ulong wordMask = 1UL << wordBit;
|
||||||
|
|
||||||
|
@ -90,7 +90,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
||||||
public void Clear(int bit)
|
public void Clear(int bit)
|
||||||
{
|
{
|
||||||
int wordIndex = bit / IntSize;
|
int wordIndex = bit / IntSize;
|
||||||
int wordBit = bit & IntMask;
|
int wordBit = bit & IntMask;
|
||||||
|
|
||||||
ulong wordMask = 1UL << wordBit;
|
ulong wordMask = 1UL << wordBit;
|
||||||
|
|
||||||
|
|
|
@ -104,4 +104,4 @@ namespace Ryujinx.Graphics.Gpu.Image
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,7 +47,7 @@ namespace Ryujinx.Graphics.OpenGL.Image
|
||||||
EnsureCapacity(bit + 1);
|
EnsureCapacity(bit + 1);
|
||||||
|
|
||||||
int wordIndex = bit / IntSize;
|
int wordIndex = bit / IntSize;
|
||||||
int wordBit = bit & IntMask;
|
int wordBit = bit & IntMask;
|
||||||
|
|
||||||
ulong wordMask = 1UL << wordBit;
|
ulong wordMask = 1UL << wordBit;
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@ namespace Ryujinx.Graphics.OpenGL.Image
|
||||||
EnsureCapacity(bit + 1);
|
EnsureCapacity(bit + 1);
|
||||||
|
|
||||||
int wordIndex = bit / IntSize;
|
int wordIndex = bit / IntSize;
|
||||||
int wordBit = bit & IntMask;
|
int wordBit = bit & IntMask;
|
||||||
|
|
||||||
ulong wordMask = 1UL << wordBit;
|
ulong wordMask = 1UL << wordBit;
|
||||||
|
|
||||||
|
|
|
@ -8,4 +8,4 @@ namespace Ryujinx.Graphics.Shader
|
||||||
BindlessNvn = 1 << 1,
|
BindlessNvn = 1 << 1,
|
||||||
BindlessFull = 1 << 2,
|
BindlessFull = 1 << 2,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -357,4 +357,4 @@ namespace Ryujinx.Graphics.Vulkan
|
||||||
Dispose(true);
|
Dispose(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,4 +32,4 @@ namespace Ryujinx.Graphics.Vulkan
|
||||||
return HashCode.Combine(BindlessTexturesCount, BindlessSamplersCount, UsePushDescriptors);
|
return HashCode.Combine(BindlessTexturesCount, BindlessSamplersCount, UsePushDescriptors);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue