From c4b9798fc1207715f4041f32e29c80496a8e93bf Mon Sep 17 00:00:00 2001 From: TheSpydog Date: Wed, 2 Nov 2022 21:23:48 +0000 Subject: [PATCH] enable samplerAnisotropy device feature (#24) Co-authored-by: TheSpydog Co-committed-by: TheSpydog --- src/Refresh_Driver_Vulkan.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Refresh_Driver_Vulkan.c b/src/Refresh_Driver_Vulkan.c index 9490573..9521ae5 100644 --- a/src/Refresh_Driver_Vulkan.c +++ b/src/Refresh_Driver_Vulkan.c @@ -10549,6 +10549,7 @@ static uint8_t VULKAN_INTERNAL_CreateLogicalDevice( deviceFeatures.occlusionQueryPrecise = VK_TRUE; deviceFeatures.fillModeNonSolid = VK_TRUE; deviceFeatures.depthClamp = VK_TRUE; + deviceFeatures.samplerAnisotropy = VK_TRUE; /* creating the logical device */