bug 14892: 'count' parameters and members named inconsistently in many cases (WIP)
s/waitSemCount/waitSemaphoreCount/g
s/signalSemCount/signalSemaphoreCount/g
s/cmdBufferCount/commandBufferCount/g
s/queueFamilyCount/queueFamilyIndexCount/g
s/layerCount/enabledLayerNameCount/g
s/extensionCount/enabledExtensionNameCount/g
https://cvs.khronos.org/bugzilla/show_bug.cgi?id=14892
diff --git a/tests/init.cpp b/tests/init.cpp
index 804efdd..0eb32f1 100644
--- a/tests/init.cpp
+++ b/tests/init.cpp
@@ -104,9 +104,9 @@
inst_info.pNext = NULL;
inst_info.pAppInfo = &app_info;
inst_info.pAllocCb = NULL;
- inst_info.layerCount = 0;
+ inst_info.enabledLayerNameCount = 0;
inst_info.ppEnabledLayerNames = NULL;
- inst_info.extensionCount = 0;
+ inst_info.enabledExtensionNameCount = 0;
inst_info.ppEnabledExtensionNames = NULL;
err = vkCreateInstance(&inst_info, &inst);
ASSERT_VK_SUCCESS(err);
@@ -507,7 +507,7 @@
info.sType = VK_STRUCTURE_TYPE_CMD_BUFFER_ALLOC_INFO;
info.cmdPool = cmdPool;
- info.count = 1;
+ info.bufferCount = 1;
info.level = VK_CMD_BUFFER_LEVEL_PRIMARY;
err = vkAllocCommandBuffers(device(), &info, &cmdBuffer);
ASSERT_VK_SUCCESS(err) << "vkAllocCommandBuffers failed";