misc: Fix obsolete warnings in Ryujinx.Graphics.Vulkan (#4020)

Was caused by some merges after the Silk.NET update
This commit is contained in:
Mary-nyan
2022-12-05 13:57:11 +01:00
committed by GitHub
parent a2a35f1be6
commit ae13f0ab4d
2 changed files with 9 additions and 9 deletions

View File

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