1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-19 21:44:14 +01:00

Vulkan: Fix sampler custom border color (#3751)

This commit is contained in:
gdkchan 2022-10-10 03:35:44 -03:00 committed by GitHub
parent 88a8d1e567
commit 5af1327068
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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();