diff options
author | tylermurphy534 <tylermurphy534@gmail.com> | 2022-10-03 06:50:49 -0400 |
---|---|---|
committer | tylermurphy534 <tylermurphy534@gmail.com> | 2022-10-03 06:50:49 -0400 |
commit | 1701aa5a616f3de55b0a426f8d9e679f2c98a0c6 (patch) | |
tree | 87a6c13fb8b7884046f9fdf8c0b7dcaaf6952f28 /engine/xe_device.cpp | |
parent | move chunk loading into world class (diff) | |
download | minecraftvulkan-1701aa5a616f3de55b0a426f8d9e679f2c98a0c6.tar.gz minecraftvulkan-1701aa5a616f3de55b0a426f8d9e679f2c98a0c6.tar.bz2 minecraftvulkan-1701aa5a616f3de55b0a426f8d9e679f2c98a0c6.zip |
Diffstat (limited to '')
-rwxr-xr-x | engine/xe_device.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engine/xe_device.cpp b/engine/xe_device.cpp index dc4d5f1..3c13150 100755 --- a/engine/xe_device.cpp +++ b/engine/xe_device.cpp @@ -170,6 +170,7 @@ void Device::createLogicalDevice() { VkPhysicalDeviceFeatures deviceFeatures = {}; deviceFeatures.samplerAnisotropy = VK_TRUE; + deviceFeatures.fillModeNonSolid = VK_TRUE; VkDeviceCreateInfo createInfo = {}; createInfo.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO; |