Searched refs:extProperties (Results 1 – 5 of 5) sorted by relevance
4546 VkPhysicalDeviceProperties2 extProperties; in deviceProperties2() local4548 extProperties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in deviceProperties2()4549 extProperties.pNext = DE_NULL; in deviceProperties2()4552 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties); in deviceProperties2()4554 TCU_CHECK(extProperties.sType == VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2); in deviceProperties2()4555 TCU_CHECK(extProperties.pNext == DE_NULL); in deviceProperties2()4566 const deUint8* extPropertyBytes = reinterpret_cast<deUint8*>(&extProperties.properties) + offset; in deviceProperties2()4572 log << TestLog::Message << extProperties.properties << TestLog::EndMessage; in deviceProperties2()4766 extProperties.pNext = prev; in deviceProperties2()4768 vki.getPhysicalDeviceProperties2(physicalDevice, &extProperties); in deviceProperties2()[all …]
284 vector<string> filterMultiAuthorExtensions (vector<VkExtensionProperties> extProperties) in filterMultiAuthorExtensions() argument293 for (size_t extNdx = 0; extNdx < extProperties.size(); extNdx++) in filterMultiAuthorExtensions()297 if (deStringBeginsWith(extProperties[extNdx].extensionName, extensionGroups[extGroupNdx])) in filterMultiAuthorExtensions()298 multiAuthorExtensions.push_back(extProperties[extNdx].extensionName); in filterMultiAuthorExtensions()
399 VkImageFormatProperties2 extProperties = in testFormat() local420 …hysicalDeviceImageFormatProperties2(context.getPhysicalDevice(), &imageFormatInfo, &extProperties); in testFormat()
292 VkImageFormatProperties2 extProperties = in createImage() local309 …if ((vki.getPhysicalDeviceImageFormatProperties2(physicalDevice, &formatInfo2, &extProperties) == … in createImage()310 || extProperties.imageFormatProperties.maxExtent.width < imageExtent.width in createImage()311 || extProperties.imageFormatProperties.maxExtent.height < imageExtent.height in createImage()312 || ((extProperties.imageFormatProperties.sampleCounts & sampleCountBit) == 0)) in createImage()
232 VkImageFormatProperties2 extProperties = in checkSupportImageSamplingInstance() local249 …iceImageFormatProperties2(context.getPhysicalDevice(), &formatInfo2, &extProperties) == VK_ERROR_F… in checkSupportImageSamplingInstance()250 || extProperties.imageFormatProperties.maxExtent.width < (deUint32)params.imageSize.x() in checkSupportImageSamplingInstance()251 || extProperties.imageFormatProperties.maxExtent.height < (deUint32)params.imageSize.y()) in checkSupportImageSamplingInstance()