MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-Samples / is_depth_stencil_format

Function is_depth_stencil_format

framework/common/vk_common.cpp:74–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72
73bool 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
79bool is_depth_format(VkFormat format)
80{
81 return is_depth_only_format(format) || is_depth_stencil_format(format);
82}

Callers 3

is_depth_formatFunction · 0.70
create_descriptorMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected