Files
2026-01-23 22:15:36 +01:00

9 lines
227 B
C++

#include <vulkan/utility/vk_format_utils.h>
#include <iostream>
int main() {
std::cout << "VK_FORMAT_D16_UNORM " << (vkuFormatIsDepthOnly(VK_FORMAT_D16_UNORM) ? "is" : "is not") << " depth only" << std::endl;
return 0;
}