Searched refs:extFeatures (Results 1 – 3 of 3) sorted by relevance
117 deMemset(&extFeatures.features, 0xcd, sizeof(extFeatures.features));118 extFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2;119 extFeatures.pNext = &deviceConditionalRenderingFeaturesEXT[ndx];120 vki.getPhysicalDeviceFeatures2(physicalDevice, &extFeatures);
332 VkPhysicalDeviceFeatures2 extFeatures in checkSupport() local338 intf.getPhysicalDeviceFeatures2(physDevice, &extFeatures); in checkSupport()340 const VkPhysicalDeviceFeatures& features = extFeatures.features; in checkSupport()
4050 VkPhysicalDeviceFeatures2 extFeatures; in deviceFeatures2() local4053 deMemset(&extFeatures.features, 0xcd, sizeof(extFeatures.features)); in deviceFeatures2()4056 extFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in deviceFeatures2()4057 extFeatures.pNext = DE_NULL; in deviceFeatures2()4060 vki.getPhysicalDeviceFeatures2(physicalDevice, &extFeatures); in deviceFeatures2()4062 TCU_CHECK(extFeatures.sType == VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2); in deviceFeatures2()4063 TCU_CHECK(extFeatures.pNext == DE_NULL); in deviceFeatures2()4065 if (deMemCmp(&coreFeatures, &extFeatures.features, sizeof(VkPhysicalDeviceFeatures)) != 0) in deviceFeatures2()4068 log << TestLog::Message << extFeatures << TestLog::EndMessage; in deviceFeatures2()4769 VkPhysicalDeviceFeatures2 extFeatures; in deviceFeaturesVulkan12() local[all …]