1
0

Forgot an important part of the VkDeviceCreateInfo structure

This commit is contained in:
2021-11-24 17:15:41 +01:00
parent 439225009d
commit 51d6844c38
2 changed files with 2 additions and 1 deletions

View File

@@ -81,6 +81,7 @@ class HelloTriangleApplication{
VkDeviceCreateInfo createInfo{};
createInfo.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO;
createInfo.pQueueCreateInfos = &queueCreateInfo;
createInfo.queueCreateInfoCount = 1;
createInfo.pEnabledFeatures = &deviceFeatures;