Home
last modified time | relevance | path

Searched refs:resolveAttachment (Results 1 – 8 of 8) sorted by relevance

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/swiftshader/src/Vulkan/
H A DVkImageView.cpp199 resolveAttachment->subresourceRange.aspectMask, in resolve()
200 resolveAttachment->subresourceRange.baseMipLevel, in resolve()
201 resolveAttachment->subresourceRange.baseArrayLayer + layer, in resolve()
208 image->copyTo(resolveAttachment->image, region); in resolve()
211 void ImageView::resolve(ImageView *resolveAttachment) in resolve() argument
227 resolveAttachment->subresourceRange.aspectMask, in resolve()
228 resolveAttachment->subresourceRange.baseMipLevel, in resolve()
229 resolveAttachment->subresourceRange.baseArrayLayer, in resolve()
230 resolveAttachment->subresourceRange.layerCount in resolve()
236 image->copyTo(resolveAttachment->image, region); in resolve()
[all …]
H A DVkFramebuffer.cpp130 uint32_t resolveAttachment = subpass.pResolveAttachments[i].attachment; in resolve() local
131 if(resolveAttachment != VK_ATTACHMENT_UNUSED) in resolve()
136 imageView->resolveWithLayerMask(attachments[resolveAttachment], in resolve()
141 imageView->resolve(attachments[resolveAttachment]); in resolve()
H A DVkImageView.hpp80 void resolve(ImageView *resolveAttachment);
81 void resolve(ImageView *resolveAttachment, int layer);
82 void resolveWithLayerMask(ImageView *resolveAttachment, uint32_t layerMask);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/src/Vulkan/
H A DVkImageView.cpp200 resolveAttachment->subresourceRange.aspectMask, in resolve()
201 resolveAttachment->subresourceRange.baseMipLevel, in resolve()
202 resolveAttachment->subresourceRange.baseArrayLayer + layer, in resolve()
209 image->resolveTo(resolveAttachment->image, region); in resolve()
212 void ImageView::resolve(ImageView *resolveAttachment) in resolve() argument
228 resolveAttachment->subresourceRange.aspectMask, in resolve()
229 resolveAttachment->subresourceRange.baseMipLevel, in resolve()
230 resolveAttachment->subresourceRange.baseArrayLayer, in resolve()
231 resolveAttachment->subresourceRange.layerCount in resolve()
237 image->resolveTo(resolveAttachment->image, region); in resolve()
[all …]
H A DVkFramebuffer.cpp170 uint32_t resolveAttachment = subpass.pResolveAttachments[i].attachment; in resolve() local
171 if(resolveAttachment != VK_ATTACHMENT_UNUSED) in resolve()
176 imageView->resolveWithLayerMask(attachments[resolveAttachment], in resolve()
181 imageView->resolve(attachments[resolveAttachment]); in resolve()
H A DVkImageView.hpp79 void resolve(ImageView *resolveAttachment);
80 void resolve(ImageView *resolveAttachment, int layer);
81 void resolveWithLayerMask(ImageView *resolveAttachment, uint32_t layerMask);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineMultisampleBaseResolve.cpp140 …const VkAttachmentReference* resolveAttachment = m_imageMSParams.numSamples == VK_SAMPLE_COUNT_1_B… in iterate() local
150 resolveAttachment, // const VkAttachmentReference* pResolveAttachments; in iterate()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassTests.cpp952 const AttachmentReference& resolveAttachment = resolveAttachments[resolveNdx]; in logRenderPassInfo() local
954 …log << TestLog::Message << "Attachment: " << resolveAttachment.getAttachment() << TestLog::EndMess… in logRenderPassInfo()
955 …log << TestLog::Message << "Layout: " << resolveAttachment.getImageLayout() << TestLog::EndMessage; in logRenderPassInfo()