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
29f3df5bd8
commit
17daa0b68d
1 changed files with 4 additions and 2 deletions
|
@ -312,12 +312,14 @@ namespace Ryujinx.Graphics.Vulkan
|
|||
}
|
||||
|
||||
public uint BindlessTexturesCount
|
||||
{ readonly get => (uint)((Internal.Id10 >> 0) & 0xFFFFFFFF);
|
||||
{
|
||||
readonly get => (uint)((Internal.Id10 >> 0) & 0xFFFFFFFF);
|
||||
set => Internal.Id10 = (Internal.Id10 & 0xFFFFFFFF00000000) | ((ulong)value << 0);
|
||||
}
|
||||
|
||||
public uint BindlessSamplersCount
|
||||
{ readonly get => (uint)((Internal.Id10 >> 32) & 0xFFFFFFFF);
|
||||
{
|
||||
readonly get => (uint)((Internal.Id10 >> 32) & 0xFFFFFFFF);
|
||||
set => Internal.Id10 = (Internal.Id10 & 0xFFFFFFFF) | ((ulong)value << 32);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue