From 8ab618c8214afba01166e7753726b6a6713862e1 Mon Sep 17 00:00:00 2001 From: Courtney Goeltzenleuchter Date: Thu, 15 Oct 2015 16:58:44 -0600 Subject: bug-14642: Rename queueRecordCount to requestedQueueCount --- layers/device_limits.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'layers/device_limits.cpp') diff --git a/layers/device_limits.cpp b/layers/device_limits.cpp index 34acb207..1c3018b1 100644 --- a/layers/device_limits.cpp +++ b/layers/device_limits.cpp @@ -408,7 +408,7 @@ VK_LAYER_EXPORT VkResult VKAPI vkCreateDevice(VkPhysicalDevice gpu, const VkDevi "Invalid call to vkCreateDevice() w/o first calling vkGetPhysicalDeviceQueueFamilyProperties()."); } else { // Check that the requested queue properties are valid - for (uint32_t i=0; iqueueRecordCount; i++) { + for (uint32_t i=0; irequestedQueueCount; i++) { uint32_t requestedIndex = pCreateInfo->pRequestedQueues[i].queueFamilyIndex; if (phy_dev_data->queueFamilyProperties.size() <= requestedIndex) { // requested index is out of bounds for this physical device skipCall |= log_msg(phy_dev_data->report_data, VK_DBG_REPORT_ERROR_BIT, VK_OBJECT_TYPE_PHYSICAL_DEVICE, 0, 0, DEVLIMITS_INVALID_QUEUE_CREATE_REQUEST, "DL", -- cgit v1.2.3