Remove Intel bug workaround, it was fixed on the latest driver

This commit is contained in:
gdk 2021-12-24 21:55:02 -03:00 committed by riperiperi
parent f6a4fe8f5f
commit 64d11d3574
2 changed files with 0 additions and 11 deletions

View file

@ -274,12 +274,6 @@ namespace Ryujinx.Graphics.Vulkan
dstOffset,
data.Length);
// Not flushing commands here causes glitches on Intel (driver bug?)
if (_gd.IsIntelWindows)
{
_gd.FlushAllCommands();
}
return true;
}

View file

@ -82,11 +82,6 @@ namespace Ryujinx.Graphics.Vulkan
{
scoped.Dispose();
}
else if (_gd.IsIntelWindows)
{
// Not flushing commands here causes glitches on Intel (driver bug?)
_gd.FlushAllCommands();
}
}
private void PushDataImpl(CommandBufferScoped cbs, BufferHolder dst, int dstOffset, ReadOnlySpan<byte> data)