| 72 | |
| 73 | bool is_depth_stencil_format(VkFormat format) |
| 74 | { |
| 75 | return format == VK_FORMAT_D16_UNORM_S8_UINT || format == VK_FORMAT_D24_UNORM_S8_UINT || |
| 76 | format == VK_FORMAT_D32_SFLOAT_S8_UINT; |
| 77 | } |
| 78 | |
| 79 | bool is_depth_format(VkFormat format) |
| 80 | { |
| 81 | return is_depth_only_format(format) || is_depth_stencil_format(format); |
| 82 | } |
no outgoing calls
no test coverage detected