| 365 | } |
| 366 | |
| 367 | static VKAPI_ATTR void VKAPI_CALL GetPhysicalDeviceFeatures(VkPhysicalDevice physicalDevice, VkPhysicalDeviceFeatures* pFeatures) { |
| 368 | uint32_t num_bools = sizeof(VkPhysicalDeviceFeatures) / sizeof(VkBool32); |
| 369 | VkBool32* bool_array = &pFeatures->robustBufferAccess; |
| 370 | SetBoolArrayTrue(bool_array, num_bools); |
| 371 | } |
| 372 | |
| 373 | // When using profiles, the format features are found in tests/device_profiles/max_profile.json |
| 374 | // |
no test coverage detected