| 32 | #include <algorithm> |
| 33 | |
| 34 | static bool IsExtensionLayer(const std::string& key) { |
| 35 | return key == "VK_LAYER_KHRONOS_timeline_semaphore" || key == "VK_LAYER_KHRONOS_synchronization2" || |
| 36 | key == "VK_LAYER_KHRONOS_shader_object" || key == "VK_LAYER_KHRONOS_memory_decompression"; |
| 37 | } |
| 38 | |
| 39 | static bool IsValidationLayer(const std::string& key) { return key == "VK_LAYER_KHRONOS_validation"; } |
| 40 |
no outgoing calls
no test coverage detected