| 90 | } |
| 91 | |
| 92 | std::string format_device_support_string(VkFormatFeatureFlags format_features) { |
| 93 | if (format_features == 0) return std::string("does not support it"); |
| 94 | return ::format("only supports:\n\t\" % s\"", GetFormatFeatureString(format_features).c_str()); |
| 95 | } |
| 96 | |
| 97 | std::string format_device_support_string(VkFormatFeatureFlags2 format_features) { |
| 98 | if (format_features == 0) return std::string("does not support it"); |
no test coverage detected