From e62b5b919ce4a46bddda1fd106a7f91d4b4bed99 Mon Sep 17 00:00:00 2001 From: Caleb Cornett Date: Wed, 2 Nov 2022 17:21:34 -0400 Subject: [PATCH] enable samplerAnisotropy device feature --- 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 */