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

Function is_depth_only_format

framework/common/vk_common.cpp:68–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66namespace vkb
67{
68bool is_depth_only_format(VkFormat format)
69{
70 return format == VK_FORMAT_D16_UNORM || format == VK_FORMAT_D32_SFLOAT;
71}
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 ||

Callers 10

is_depth_formatFunction · 0.70
prepare_gui_pipelineMethod · 0.50
build_command_buffersMethod · 0.50
prepare_pipelinesMethod · 0.50
build_command_buffersMethod · 0.50
prepare_offscreenMethod · 0.50
create_pipelineMethod · 0.50
build_command_buffersMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected