misc: Fix obsolete warnings in Ryujinx.Graphics.Vulkan (#4020)
Was caused by some merges after the Silk.NET update
This commit is contained in:
parent
a2a35f1be6
commit
ae13f0ab4d
2 changed files with 9 additions and 9 deletions
|
@ -317,7 +317,7 @@ namespace Ryujinx.Graphics.Vulkan
|
|||
SampleCountFlags converted = (SampleCountFlags)(1u << (31 - BitOperations.LeadingZeroCount(samples)));
|
||||
|
||||
// Pick nearest sample count that the host actually supports.
|
||||
while (converted != SampleCountFlags.SampleCount1Bit && (converted & supportedSampleCounts) == 0)
|
||||
while (converted != SampleCountFlags.Count1Bit && (converted & supportedSampleCounts) == 0)
|
||||
{
|
||||
converted = (SampleCountFlags)((uint)converted >> 1);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue