mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-23 01:20:21 +00:00
Remove Intel bug workaround, it was fixed on the latest driver
This commit is contained in:
parent
f6a4fe8f5f
commit
64d11d3574
2 changed files with 0 additions and 11 deletions
|
@ -274,12 +274,6 @@ namespace Ryujinx.Graphics.Vulkan
|
||||||
dstOffset,
|
dstOffset,
|
||||||
data.Length);
|
data.Length);
|
||||||
|
|
||||||
// Not flushing commands here causes glitches on Intel (driver bug?)
|
|
||||||
if (_gd.IsIntelWindows)
|
|
||||||
{
|
|
||||||
_gd.FlushAllCommands();
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -82,11 +82,6 @@ namespace Ryujinx.Graphics.Vulkan
|
||||||
{
|
{
|
||||||
scoped.Dispose();
|
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)
|
private void PushDataImpl(CommandBufferScoped cbs, BufferHolder dst, int dstOffset, ReadOnlySpan<byte> data)
|
||||||
|
|
Loading…
Reference in a new issue