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
1 changed files with 1 additions and 0 deletions

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