commit | ea97564708cfcbebb42a842edac456e79643e716 | [log] [tgz] |
---|---|---|
author | Courtney Goeltzenleuchter <courtney@LunarG.com> | Wed Sep 16 16:23:55 2015 -0600 |
committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | Thu Sep 17 15:32:11 2015 -0600 |
tree | 88df521497fd67d1580b7cead669587b19911135 | |
parent | d9e966aac83c28e7f6ac6535f695c9a7c06f667d [diff] [blame] |
bug 14640: add pNext/sType to VkDeviceQueueCreateInfo
diff --git a/demos/cube.c b/demos/cube.c index 49eb583..6507438 100644 --- a/demos/cube.c +++ b/demos/cube.c
@@ -2297,6 +2297,8 @@ .ppEnabledExtensionNames = (const char *const*) extension_names, }; const VkDeviceQueueCreateInfo queue = { + .sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO, + .pNext = NULL, .queueFamilyIndex = 0, .queueCount = 1, };