Lines Matching refs:extProperties

4534 	VkPhysicalDeviceProperties2		extProperties;
4536 extProperties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
4537 extProperties.pNext = DE_NULL;
4540 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties);
4542 TCU_CHECK(extProperties.sType == VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2);
4543 TCU_CHECK(extProperties.pNext == DE_NULL);
4554 const deUint8* extPropertyBytes = reinterpret_cast<deUint8*>(&extProperties.properties) + offset;
4560 log << TestLog::Message << extProperties.properties << TestLog::EndMessage;
4754 extProperties.pNext = prev;
4756 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties);
5042 extProperties.pNext = &pushDescriptorProperties[ndx];
5044 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties);
5071 extProperties.pNext = &performanceQueryProperties[ndx];
5073 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties);
5114 extProperties.pNext = pciBusInfoProperties + ndx;
5115 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties);
5147 extProperties.pNext = &portabilitySubsetProperties[ndx];
5149 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties);
5194 VkFormatProperties2 extProperties;
5197 deMemset(&extProperties, 0xcd, sizeof(VkFormatProperties2));
5199 extProperties.sType = VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_2;
5200 extProperties.pNext = DE_NULL;
5203 vki.getPhysicalDeviceFormatProperties2(physicalDevice, format, &extProperties);
5205 TCU_CHECK(extProperties.sType == VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_2);
5206 TCU_CHECK(extProperties.pNext == DE_NULL);
5208 if (deMemCmp(&coreProperties, &extProperties.formatProperties, sizeof(VkFormatProperties)) != 0)
5211 log << TestLog::Message << toString (extProperties) << TestLog::EndMessage;
5234 std::vector<VkQueueFamilyProperties2> extProperties (numExtQueueFamilies);
5237 deMemset(&extProperties[0], 0xcd, sizeof(VkQueueFamilyProperties2)*numExtQueueFamilies);
5239 for (size_t ndx = 0; ndx < extProperties.size(); ++ndx)
5241 extProperties[ndx].sType = VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2;
5242 extProperties[ndx].pNext = DE_NULL;
5246 vki.getPhysicalDeviceQueueFamilyProperties2(physicalDevice, &numExtQueueFamilies, &extProperties[0]);
5249 TCU_CHECK((size_t)numExtQueueFamilies == extProperties.size());
5252 for (size_t ndx = 0; ndx < extProperties.size(); ++ndx)
5254 TCU_CHECK(extProperties[ndx].sType == VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2);
5255 TCU_CHECK(extProperties[ndx].pNext == DE_NULL);
5257 if (deMemCmp(&coreProperties[ndx], &extProperties[ndx].queueFamilyProperties, sizeof(VkQueueFamilyProperties)) != 0)
5261 << TestLog::Message << extProperties[ndx] << TestLog::EndMessage;
5275 VkPhysicalDeviceMemoryProperties2 extProperties;
5278 deMemset(&extProperties, 0xcd, sizeof(VkPhysicalDeviceMemoryProperties2));
5280 extProperties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2;
5281 extProperties.pNext = DE_NULL;
5284 vki.getPhysicalDeviceMemoryProperties2(physicalDevice, &extProperties);
5286 TCU_CHECK(extProperties.sType == VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2);
5287 TCU_CHECK(extProperties.pNext == DE_NULL);
5289 if (coreProperties.memoryTypeCount != extProperties.memoryProperties.memoryTypeCount)
5291 if (coreProperties.memoryHeapCount != extProperties.memoryProperties.memoryHeapCount)
5295 const VkMemoryType *extType = &extProperties.memoryProperties.memoryTypes[i];
5301 const VkMemoryHeap *extHeap = &extProperties.memoryProperties.memoryHeaps[i];
5306 log << TestLog::Message << extProperties << TestLog::EndMessage;
5685 VkPhysicalDeviceProperties2 extProperties;
5704 deMemset(&extProperties.properties, 0x00, sizeof(extProperties.properties));
5705 extProperties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
5706 extProperties.pNext = vulkan11Properties[ndx];
5716 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties);
5812 VkPhysicalDeviceProperties2 extProperties;
5826 deMemset(&extProperties.properties, 0x00, sizeof(extProperties.properties));
5827 extProperties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
5828 extProperties.pNext = vulkan13Properties[ndx];
5834 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties);
6208 VkPhysicalDeviceProperties2 extProperties = initVulkanStructure(&vulkan11Properties);
6210 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties);
6229 extProperties = initVulkanStructure(&timelineSemaphoreProperties);
6231 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties);
6374 VkPhysicalDeviceProperties2 extProperties = initVulkanStructure(&vulkan13Properties);
6376 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties);
6387 extProperties = initVulkanStructure(&maintenance4Properties);
6389 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties);
6507 VkImageFormatProperties2 extProperties;
6512 deMemset(&extProperties, 0xcd, sizeof(VkImageFormatProperties2));
6514 extProperties.sType = VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2;
6515 extProperties.pNext = DE_NULL;
6518 extResult = vki.getPhysicalDeviceImageFormatProperties2(physicalDevice, &imageFormatInfo, &extProperties);
6520 TCU_CHECK(extProperties.sType == VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2);
6521 TCU_CHECK(extProperties.pNext == DE_NULL);
6524 (deMemCmp(&coreProperties, &extProperties.imageFormatProperties, sizeof(VkImageFormatProperties)) != 0))
6528 << TestLog::Message << "vkGetPhysicalDeviceImageFormatProperties2() returned " << extResult << ", " << extProperties << TestLog::EndMessage;
6600 std::vector<VkSparseImageFormatProperties2> extProperties (numExtProperties);
6603 deMemset(&extProperties[0], 0xcd, sizeof(VkSparseImageFormatProperties2)*numExtProperties);
6607 extProperties[ndx].sType = VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2;
6608 extProperties[ndx].pNext = DE_NULL;
6612 vki.getPhysicalDeviceSparseImageFormatProperties2(physicalDevice, &imageFormatInfo, &numExtProperties, &extProperties[0]);
6615 TCU_CHECK((size_t)numExtProperties == extProperties.size());
6619 TCU_CHECK(extProperties[ndx].sType == VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2);
6620 TCU_CHECK(extProperties[ndx].pNext == DE_NULL);
6622 if ((deMemCmp(&coreProperties[ndx], &extProperties[ndx].properties, sizeof(VkSparseImageFormatProperties)) != 0))
6626 << TestLog::Message << "vkGetPhysicalDeviceSparseImageFormatProperties2() returned " << extProperties[ndx] << TestLog::EndMessage;