Vulkan: Fix sampler custom border color (#3751)

This commit is contained in:
gdkchan 2022-10-10 03:35:44 -03:00 committed by Matt Heins
parent c223c87533
commit fd680457a1

View file

@ -64,6 +64,7 @@ namespace Ryujinx.Graphics.Vulkan
};
samplerCreateInfo.PNext = &customBorderColor;
samplerCreateInfo.BorderColor = BorderColor.FloatCustomExt;
}
gd.Api.CreateSampler(device, samplerCreateInfo, null, out var sampler).ThrowOnError();