Home
last modified time | relevance | path

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

/external/swiftshader/src/Vulkan/
DVkFramebuffer.cpp189 …VkSubpassDescriptionDepthStencilResolve dsResolve = renderPass->getSubpassDepthStencilResolve(subp… in resolve() local
194 …imageView->resolveDepthStencil(attachments[dsResolve.pDepthStencilResolveAttachment->attachment], in resolve()
DVkImageView.cpp265 …epthStencil(ImageView *resolveAttachment, const VkSubpassDescriptionDepthStencilResolve &dsResolve) in resolveDepthStencil() argument
273 image->resolveDepthStencilTo(this, resolveAttachment, dsResolve); in resolveDepthStencil()
DVkImageView.hpp82 …pthStencil(ImageView *resolveAttachment, const VkSubpassDescriptionDepthStencilResolve &dsResolve);
DVkImage.cpp996 …nst ImageView *src, ImageView *dst, const VkSubpassDescriptionDepthStencilResolve &dsResolve) const in resolveDepthStencilTo()
998 device->getBlitter()->resolveDepthStencil(src, dst, dsResolve); in resolveDepthStencilTo()
/external/angle/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.cpp855 const VkAttachmentDescription &dsResolve = createInfo.pAttachments[resolveRenderPassIndex]; in UpdateRenderPassDepthStencilResolvePerfCounters() local
858 countersOut->depthClears += dsResolve.loadOp == VK_ATTACHMENT_LOAD_OP_CLEAR ? 1 : 0; in UpdateRenderPassDepthStencilResolvePerfCounters()
859 countersOut->depthLoads += dsResolve.loadOp == VK_ATTACHMENT_LOAD_OP_LOAD ? 1 : 0; in UpdateRenderPassDepthStencilResolvePerfCounters()
861 dsResolve.storeOp == static_cast<uint16_t>(RenderPassStoreOp::Store) ? 1 : 0; in UpdateRenderPassDepthStencilResolvePerfCounters()
863 countersOut->stencilClears += dsResolve.stencilLoadOp == VK_ATTACHMENT_LOAD_OP_CLEAR ? 1 : 0; in UpdateRenderPassDepthStencilResolvePerfCounters()
864 countersOut->stencilLoads += dsResolve.stencilLoadOp == VK_ATTACHMENT_LOAD_OP_LOAD ? 1 : 0; in UpdateRenderPassDepthStencilResolvePerfCounters()
866 dsResolve.stencilStoreOp == static_cast<uint16_t>(RenderPassStoreOp::Store) ? 1 : 0; in UpdateRenderPassDepthStencilResolvePerfCounters()