Home
last modified time | relevance | path

Searched refs:FormatIsDepthOrStencil (Results 1 – 5 of 5) sorted by relevance

/external/vulkan-validation-layers/layers/
Dvk_format_utils.h140 VK_LAYER_EXPORT bool FormatIsDepthOrStencil(VkFormat format);
186 return !(FormatIsUndef(format) || FormatIsDepthOrStencil(format) || FormatIsMultiplane(format)); in FormatIsColor()
Dbuffer_validation.cpp1597 if (FormatIsDepthOrStencil(image_state->createInfo.format)) { in ValidateImageAttributes()
1793 if (image_state && !FormatIsDepthOrStencil(image_state->createInfo.format)) { in PreCallValidateCmdClearDepthStencilImage()
2693 …if (FormatIsDepthOrStencil(src_image_state->createInfo.format) || FormatIsDepthOrStencil(dst_image… in PreCallValidateCmdCopyImage()
3161 if (FormatIsDepthOrStencil(src_format) && (filter != VK_FILTER_NEAREST)) { in PreCallValidateCmdBlitImage()
3170 if (FormatIsDepthOrStencil(src_format) || FormatIsDepthOrStencil(dst_format)) { in PreCallValidateCmdBlitImage()
5209 } else if (FormatIsDepthOrStencil(img_format)) { in PreCallValidateGetImageSubresourceLayout()
Dvk_format_utils.cpp494 VK_LAYER_EXPORT bool FormatIsDepthOrStencil(VkFormat format) { in FormatIsDepthOrStencil() function
Ddescriptor_sets.cpp1348 bool ds = FormatIsDepthOrStencil(format); in ValidateImageUpdate()
Dparameter_validation_utils.cpp611 …f ((pCreateInfo->flags & VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT) || FormatIsDepthOrStencil(pCreateInf… in manual_PreCallValidateCreateImage()