Home
last modified time | relevance | path

Searched refs:isDepthStencilFormat (Results 1 – 13 of 13) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/conditional_rendering/
DvktConditionalDrawAndClearTests.cpp356isDepthStencilFormat(format) ? VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL : VK_IMAGE_LAYOUT_… in createRenderPass()
357isDepthStencilFormat(format) ? VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL : VK_IMAGE_LAYOUT_… in createRenderPass()
369 isDepthStencilFormat(format) ? 0 : 1, in createRenderPass()
370 isDepthStencilFormat(format) ? DE_NULL : &attachmentReference, in createRenderPass()
372 isDepthStencilFormat(format) ? attachmentReference : AttachmentReference(), in createRenderPass()
1095isDepthStencilFormat(format) ? VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL : VK_IMAGE_LAYOUT_… in createRenderPass()
1096isDepthStencilFormat(format) ? VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL : VK_IMAGE_LAYOUT_… in createRenderPass()
1108 isDepthStencilFormat(format) ? 0 : 1, in createRenderPass()
1109 isDepthStencilFormat(format) ? DE_NULL : &attachmentReference, in createRenderPass()
1111 isDepthStencilFormat(format) ? attachmentReference : AttachmentReference(), in createRenderPass()
/external/deqp/external/vulkancts/modules/vulkan/renderpass/
DvktRenderPassSubpassDependencyTests.cpp1006 …xt.getDeviceInterface(), context.getDevice(), m_images, m_format, isDepthStencilFormat(m_format) ?… in SubpassDependencyTestInstance()
1038 …const VkFormatFeatureFlags flags = isDepthStencilFormat(m_format) ? VK_FORMAT_FEATURE_DEPTH_STENC… in createAndAllocateImages()
1056 VkImageUsageFlags usage = ((isDepthStencilFormat(format) in createAndAllocateImages()
1193 const VkPipelineDepthStencilStateCreateInfo depthStencilCreateInfo (isDepthStencilFormat(format) in createRenderPipelines()
1308 VkImageLayout imageLayout = isDepthStencilFormat(format) in createDescriptorSets()
1442 …clearValues.push_back(isDepthStencilFormat(m_format) ? makeClearValueDepthStencil(1.0f, 255u) : ma… in iterateInternal()
1528 const VkImageAspectFlags imageAspectFlags = isDepthStencilFormat(m_format) in iterateInternal()
1530 const VkAccessFlags srcAccessMask = isDepthStencilFormat(m_format) in iterateInternal()
1532 const VkImageLayout oldLayout = isDepthStencilFormat(m_format) in iterateInternal()
1534 const VkPipelineStageFlags srcStageMask = isDepthStencilFormat(m_format) in iterateInternal()
[all …]
DvktRenderPassMultisampleTests.cpp473 …const bool isDepthStencilFormat (tcu::hasDepthComponent(format.order) || tcu::hasStencilComp… in createRenderPass() local
484 isDepthStencilFormat // VkImageLayout layout; || VkImageLayout layout; in createRenderPass()
593isDepthStencilFormat ? 0u : 1u, // deUint32 colorAttachmentCount; || deUint32 c… in createRenderPass()
594isDepthStencilFormat ? DE_NULL : &srcAttachmentRef, // const VkAttachmentReference* pColorAttachm… in createRenderPass()
596isDepthStencilFormat ? &srcAttachmentRef : DE_NULL, // const VkAttachmentReference* pDepthStencil… in createRenderPass()
757 …const bool isDepthStencilFormat (tcu::hasDepthComponent(format.order) || tcu::hasStencilComp… in createRenderPipeline() local
842 (isDepthStencilFormat ? 0u : 1u), in createRenderPipeline()
843 (isDepthStencilFormat ? DE_NULL : &attachmentBlendState), in createRenderPipeline()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineClearUtil.cpp97 if (isDepthStencilFormat(clearFormat)) in defaultClearValue()
DvktPipelineDepthTests.cpp70 DE_ASSERT(vk::isDepthStencilFormat(format)); in testSupportsDepthStencilFormat()
89 DE_ASSERT(vk::isDepthStencilFormat(format)); in testSupportsAtLeastOneDepthStencilFormat()
DvktPipelineImageSamplingInstance.cpp299 …if ((isCompressedFormat(imageFormat) || isDepthStencilFormat(imageFormat)) && imageViewType == VK_… in ImageSamplingInstance()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiImageClearingTests.cpp606 if (isDepthStencilFormat(format)) in getImageUsageFlags()
746 if (isDepthStencilFormat(format)) in createRenderPass()
779 if (isDepthStencilFormat(format)) in createRenderPass()
1062 if (!isDepthStencilFormat(m_params.imageFormat)) in verifyResultImage()
1326 const bool isDepthStencil = isDepthStencilFormat(m_params.imageFormat); in iterate()
DvktApiFeatureInfo.cpp2447 …if (isDepthStencilFormat(format) && (imageType == VK_IMAGE_TYPE_1D || imageType == VK_IMAGE_TYPE_3… in isRequiredImageParameterCombination()
2461 if (isDepthStencilFormat(format)) in isRequiredImageParameterCombination()
/external/deqp/external/vulkancts/framework/vulkan/
DvkImageUtil.hpp42 bool isDepthStencilFormat (VkFormat format);
DvkImageUtil.cpp60 bool isDepthStencilFormat (VkFormat format) in isDepthStencilFormat() function
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationOperation.cpp290 if (isDepthStencilFormat(format)) in makeClearValue()
938 const bool isDepthStencil = isDepthStencilFormat(resourceDesc.imageFormat); in Support()
1914 …, m_requiredQueueFlags (resourceDesc.type == RESOURCE_TYPE_IMAGE && isDepthStencilFormat(resourceD… in Support()
2101 …, m_requiredQueueFlags (resourceDesc.type == RESOURCE_TYPE_IMAGE && isDepthStencilFormat(resourceD… in Support()
2450 DE_ASSERT(!isDepthStencilFormat(m_resourceDesc.imageFormat)); in Support()
/external/deqp/external/vulkancts/modules/vulkan/memory/
DvktMemoryRequirementsTests.cpp1057 …const bool isDepthStencilFormat = (format >= VK_FORMAT_D16_UNORM && format <= VK_FORMAT_D32_SFLOAT… in isFormatMatchingAspect() local
1059 …turn (aspect == (VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT)) == isDepthStencilFormat; in isFormatMatchingAspect()
/external/deqp/external/vulkancts/modules/vulkan/multiview/
DvktMultiViewRenderTests.cpp240 const bool depthStencilFormat = isDepthStencilFormat(colorFormat); in ImageAttachment()