v140: Bug 14251 - Inconsistencies in the definition of queries
diff --git a/tests/init.cpp b/tests/init.cpp
index a9f8fd4..6f1214e 100644
--- a/tests/init.cpp
+++ b/tests/init.cpp
@@ -86,7 +86,7 @@
uint32_t m_device_id;
vk_testing::Device *m_device;
VkPhysicalDeviceProperties props;
- std::vector<VkPhysicalDeviceQueueProperties> queue_props;
+ std::vector<VkQueueFamilyProperties> queue_props;
uint32_t graphics_queue_node_index;
virtual void SetUp() {
@@ -280,7 +280,7 @@
VkResult err;
VkQueue queue;
- const VkPhysicalDeviceQueueProperties props = device->phy().queue_properties()[queue_node_index];
+ const VkQueueFamilyProperties props = device->phy().queue_properties()[queue_node_index];
for (que_idx = 0; que_idx < props.queueCount; que_idx++) {
// TODO: Need to add support for separate MEMMGR and work queues, including synchronization
err = vkGetDeviceQueue(device->handle(), queue_node_index, que_idx, &queue);