Fix Vulkan blit-like operations swizzle (#5003)

This commit is contained in:
gdkchan 2023-05-18 18:16:03 -03:00 committed by GitHub
parent 4d6d3463f9
commit b4d5ca7bad
3 changed files with 39 additions and 7 deletions

View file

@ -1098,6 +1098,11 @@ namespace Ryujinx.Graphics.Vulkan
_descriptorSetUpdater.SetTextureAndSampler(Cbs, stage, binding, texture, sampler);
}
public void SetTextureAndSamplerIdentitySwizzle(ShaderStage stage, int binding, ITexture texture, ISampler sampler)
{
_descriptorSetUpdater.SetTextureAndSamplerIdentitySwizzle(Cbs, stage, binding, texture, sampler);
}
public void SetTransformFeedbackBuffers(ReadOnlySpan<BufferRange> buffers)
{
PauseTransformFeedbackInternal();