Home
last modified time | relevance | path

Searched refs:extFeatures (Results 1 – 4 of 4) sorted by relevance

/external/deqp/external/vulkancts/framework/vulkan/generated/vulkansc/
DvkDeviceFeatures2.inl13 VkPhysicalDeviceFeatures2 extFeatures; local
25 deMemset(&extFeatures.features, 0xcd, sizeof(extFeatures.features));
26 extFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2;
27 extFeatures.pNext = &device4444FormatsFeaturesEXT[ndx];
29 vki.getPhysicalDeviceFeatures2(physicalDevice, &extFeatures);
51 VkPhysicalDeviceFeatures2 extFeatures; local
63 deMemset(&extFeatures.features, 0xcd, sizeof(extFeatures.features));
64 extFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2;
65 extFeatures.pNext = &device8BitStorageFeatures[ndx];
67 vki.getPhysicalDeviceFeatures2(physicalDevice, &extFeatures);
[all …]
/external/deqp/external/vulkancts/framework/vulkan/generated/vulkan/
DvkDeviceFeatures2.inl13 VkPhysicalDeviceFeatures2 extFeatures; local
25 deMemset(&extFeatures.features, 0xcd, sizeof(extFeatures.features));
26 extFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2;
27 extFeatures.pNext = &devicePrivateDataFeatures[ndx];
29 vki.getPhysicalDeviceFeatures2(physicalDevice, &extFeatures);
50 VkPhysicalDeviceFeatures2 extFeatures; local
62 deMemset(&extFeatures.features, 0xcd, sizeof(extFeatures.features));
63 extFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2;
64 extFeatures.pNext = &deviceVariablePointersFeatures[ndx];
66 vki.getPhysicalDeviceFeatures2(physicalDevice, &extFeatures);
[all …]
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiFeatureInfo.cpp4516 VkPhysicalDeviceFeatures2 extFeatures; in deviceFeatures2() local
4519 deMemset(&extFeatures.features, 0xcd, sizeof(extFeatures.features)); in deviceFeatures2()
4522 extFeatures.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2; in deviceFeatures2()
4523 extFeatures.pNext = DE_NULL; in deviceFeatures2()
4526 vki.getPhysicalDeviceFeatures2(physicalDevice, &extFeatures); in deviceFeatures2()
4528 TCU_CHECK(extFeatures.sType == VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2); in deviceFeatures2()
4529 TCU_CHECK(extFeatures.pNext == DE_NULL); in deviceFeatures2()
4531 if (deMemCmp(&coreFeatures, &extFeatures.features, sizeof(VkPhysicalDeviceFeatures)) != 0) in deviceFeatures2()
4534 log << TestLog::Message << extFeatures << TestLog::EndMessage; in deviceFeatures2()
5442 VkPhysicalDeviceFeatures2 extFeatures; in deviceFeaturesVulkan12() local
[all …]
DvktApiBufferMemoryRequirementsTests.cpp389 VkPhysicalDeviceFeatures2 extFeatures in checkSupport() local
395 intf.getPhysicalDeviceFeatures2(physDevice, &extFeatures); in checkSupport()
397 const VkPhysicalDeviceFeatures& features = extFeatures.features; in checkSupport()