Home
last modified time | relevance | path

Searched refs:storeOp (Results 1 – 25 of 126) sorted by relevance

123456

/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DRenderPassBuilderD3D12.cpp36 D3D12_RENDER_PASS_ENDING_ACCESS_TYPE D3D12EndingAccessType(wgpu::StoreOp storeOp) { in D3D12EndingAccessType() argument
37 switch (storeOp) { in D3D12EndingAccessType()
46 wgpu::StoreOp storeOp, in D3D12EndingAccessResolveParameters() argument
58 if (storeOp == wgpu::StoreOp::Discard) { in D3D12EndingAccessResolveParameters()
60 } else if (storeOp == wgpu::StoreOp::Store) { in D3D12EndingAccessResolveParameters()
171 wgpu::StoreOp storeOp) { in SetRenderTargetEndingAccess() argument
173 D3D12EndingAccessType(storeOp); in SetRenderTargetEndingAccess()
177 wgpu::StoreOp storeOp, in SetRenderTargetEndingAccessResolve() argument
183 D3D12EndingAccessResolveParameters(storeOp, resolveSource, resolveDestination); in SetRenderTargetEndingAccessResolve()
193 wgpu::StoreOp storeOp, in SetDepthAccess() argument
[all …]
DRenderPassBuilderD3D12.h57 wgpu::StoreOp storeOp,
66 void SetRenderTargetEndingAccess(ColorAttachmentIndex attachment, wgpu::StoreOp storeOp);
68 wgpu::StoreOp storeOp,
72 wgpu::StoreOp storeOp,
/third_party/skia/src/gpu/vk/
DGrVkOpsRenderPass.cpp36 VkAttachmentLoadOp* loadOp, VkAttachmentStoreOp* storeOp) { in get_vk_load_store_ops() argument
54 *storeOp = VK_ATTACHMENT_STORE_OP_STORE; in get_vk_load_store_ops()
57 *storeOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; in get_vk_load_store_ops()
61 *storeOp = VK_ATTACHMENT_STORE_OP_STORE; in get_vk_load_store_ops()
227 VkAttachmentStoreOp storeOp; in init() local
228 get_vk_load_store_ops(colorInfo.fLoadOp, colorInfo.fStoreOp, &loadOp, &storeOp); in init()
229 GrVkRenderPass::LoadStoreOps vkColorOps(loadOp, storeOp); in init()
231 get_vk_load_store_ops(resolveInfo.fLoadOp, resolveInfo.fStoreOp, &loadOp, &storeOp); in init()
232 GrVkRenderPass::LoadStoreOps vkResolveOps(loadOp, storeOp); in init()
234 get_vk_load_store_ops(stencilInfo.fLoadOp, stencilInfo.fStoreOp, &loadOp, &storeOp); in init()
[all …]
DGrVkRenderPass.h28 LoadStoreOps(VkAttachmentLoadOp loadOp, VkAttachmentStoreOp storeOp) in LoadStoreOps()
30 , fStoreOp(storeOp) {} in LoadStoreOps()
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DRenderPassCache.cpp54 wgpu::StoreOp storeOp, in SetColor() argument
59 colorStoreOp[index] = storeOp; in SetColor()
136 attachmentDesc.storeOp = VulkanAttachmentStoreOp(query.colorStoreOp[i]); in CreateRenderPassForQuery()
160 attachmentDesc.storeOp = VulkanAttachmentStoreOp(query.depthStoreOp); in CreateRenderPassForQuery()
184 attachmentDesc.storeOp = VK_ATTACHMENT_STORE_OP_STORE; in CreateRenderPassForQuery()
DRenderPassCache.h44 wgpu::StoreOp storeOp,
/third_party/vk-gl-cts/external/vulkan-docs/src/proposals/
DVK_EXT_multisampled_render_to_single_sampled.adoc17 `VK_ATTACHMENT_LOAD_OP_LOAD`, and `storeOp` not equal to
208 .storeOp = VK_ATTACHMENT_STORE_OP_STORE,
219 .storeOp = VK_ATTACHMENT_STORE_OP_DONT_CARE,
230 .storeOp = VK_ATTACHMENT_STORE_OP_STORE,
311 .storeOp = VK_ATTACHMENT_STORE_OP_STORE,
322 .storeOp = VK_ATTACHMENT_STORE_OP_STORE,
333 .storeOp = VK_ATTACHMENT_STORE_OP_STORE,
342 .storeOp = VK_ATTACHMENT_STORE_OP_DONT_CARE,
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
DvktRenderPassTestsUtil.hpp51 VkAttachmentStoreOp storeOp,
66 VkAttachmentStoreOp storeOp,
357 VkAttachmentStoreOp storeOp,
DvktRenderPassUnusedAttachmentTests.cpp66 VkAttachmentStoreOp storeOp; member
127 testParams.storeOp, // VkAttachmentStoreOp storeOp in createRenderPass()
954 std::string storeOpToString (VkAttachmentStoreOp storeOp) in storeOpToString() argument
956 switch (storeOp) in storeOpToString()
1005 params.storeOp = storeOps[storeOpIdx]; in createRenderPassUnusedAttachmentTests()
DvktRenderPassTestsUtil.cpp57 storeOp = storeOp_; in AttachmentDescription1()
81 storeOp = storeOp_; in AttachmentDescription2()
523 VkAttachmentStoreOp storeOp, in Attachment() argument
534 , m_storeOp (storeOp) in Attachment()
DvktRenderPassLoadStoreOpNoneTests.cpp96 VkAttachmentStoreOp storeOp; member
261 testParams.attachments[i].storeOp, // VkAttachmentStoreOp storeOp in createRenderPass()
641 m_testParams.attachments[i].storeOp, // VkAttachmentStoreOp storeOp; in createCommandBuffer()
659 m_testParams.attachments[i].storeOp, // VkAttachmentStoreOp storeOp; in createCommandBuffer()
672 depthAttachment.storeOp = m_testParams.attachments[i].storeOp; in createCommandBuffer()
675 stencilAttachment.storeOp = m_testParams.attachments[i].stencilStoreOp; in createCommandBuffer()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
DvktRenderPassTestsUtil.hpp51 VkAttachmentStoreOp storeOp,
66 VkAttachmentStoreOp storeOp,
357 VkAttachmentStoreOp storeOp,
DvktRenderPassUnusedAttachmentTests.cpp66 VkAttachmentStoreOp storeOp; member
127 testParams.storeOp, // VkAttachmentStoreOp storeOp in createRenderPass()
954 std::string storeOpToString (VkAttachmentStoreOp storeOp) in storeOpToString() argument
956 switch (storeOp) in storeOpToString()
1005 params.storeOp = storeOps[storeOpIdx]; in createRenderPassUnusedAttachmentTests()
DvktRenderPassTestsUtil.cpp57 storeOp = storeOp_; in AttachmentDescription1()
81 storeOp = storeOp_; in AttachmentDescription2()
523 VkAttachmentStoreOp storeOp, in Attachment() argument
534 , m_storeOp (storeOp) in Attachment()
DvktRenderPassLoadStoreOpNoneTests.cpp96 VkAttachmentStoreOp storeOp; member
261 testParams.attachments[i].storeOp, // VkAttachmentStoreOp storeOp in createRenderPass()
641 m_testParams.attachments[i].storeOp, // VkAttachmentStoreOp storeOp; in createCommandBuffer()
659 m_testParams.attachments[i].storeOp, // VkAttachmentStoreOp storeOp; in createCommandBuffer()
672 depthAttachment.storeOp = m_testParams.attachments[i].storeOp; in createCommandBuffer()
675 stencilAttachment.storeOp = m_testParams.attachments[i].stencilStoreOp; in createCommandBuffer()
/third_party/mesa3d/src/vulkan/runtime/
Dvk_render_pass.c125 .storeOp = pCreateInfo->pAttachments[i].storeOp, in vk_common_CreateRenderPass()
339 .store_op = desc->storeOp, in vk_render_pass_attachment_init()
955 .storeOp = VK_ATTACHMENT_STORE_OP_STORE, in vk_get_command_buffer_inheritance_as_rendering_resume()
974 .storeOp = VK_ATTACHMENT_STORE_OP_STORE, in vk_get_command_buffer_inheritance_as_rendering_resume()
985 .storeOp = VK_ATTACHMENT_STORE_OP_STORE, in vk_get_command_buffer_inheritance_as_rendering_resume()
1521 .storeOp = VK_ATTACHMENT_STORE_OP_STORE, in load_attachment()
1530 .storeOp = VK_ATTACHMENT_STORE_OP_STORE, in load_attachment()
1640 color_attachment->storeOp = rp_att->store_op; in begin_subpass()
1649 color_attachment->storeOp = VK_ATTACHMENT_STORE_OP_STORE; in begin_subpass()
1761 depth_attachment.storeOp = rp_att->store_op; in begin_subpass()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/multiview/
DvktMultiViewRenderPassUtil.hpp45 VkAttachmentStoreOp storeOp,
60 VkAttachmentStoreOp storeOp,
DvktMultiViewRenderPassUtil.cpp54 storeOp = storeOp_; in AttachmentDescription1()
78 storeOp = storeOp_; in AttachmentDescription2()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/multiview/
DvktMultiViewRenderPassUtil.hpp45 VkAttachmentStoreOp storeOp,
60 VkAttachmentStoreOp storeOp,
DvktMultiViewRenderPassUtil.cpp54 storeOp = storeOp_; in AttachmentDescription1()
78 storeOp = storeOp_; in AttachmentDescription2()
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
DVK_EXT_multisampled_render_to_single_sampled.adoc24 not equal to ename:VK_ATTACHMENT_LOAD_OP_LOAD and pname:storeOp not equal to
69 single mistake in pname:loadOp or pname:storeOp would result in the
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_ops/
DvktFragmentOperationsTransientAttachmentTests.cpp162 const VkAttachmentStoreOp storeOp, in makeAttachment() argument
176 storeOp, // VkAttachmentStoreOp storeOp; in makeAttachment()
178 hasStencil ? storeOp : VK_ATTACHMENT_STORE_OP_DONT_CARE, // VkAttachmentStoreOp stencilStoreOp; in makeAttachment()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/fragment_ops/
DvktFragmentOperationsTransientAttachmentTests.cpp162 const VkAttachmentStoreOp storeOp, in makeAttachment() argument
176 storeOp, // VkAttachmentStoreOp storeOp; in makeAttachment()
178 hasStencil ? storeOp : VK_ATTACHMENT_STORE_OP_DONT_CARE, // VkAttachmentStoreOp stencilStoreOp; in makeAttachment()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.cpp57 VkAttachmentStoreOp ConvertRenderPassStoreOpToVkStoreOp(RenderPassStoreOp storeOp) in ConvertRenderPassStoreOpToVkStoreOp() argument
59 return storeOp == RenderPassStoreOp::None ? VK_ATTACHMENT_STORE_OP_NONE_EXT in ConvertRenderPassStoreOpToVkStoreOp()
60 : static_cast<VkAttachmentStoreOp>(storeOp); in ConvertRenderPassStoreOpToVkStoreOp()
192 desc->storeOp = in UnpackAttachmentDesc()
193 ConvertRenderPassStoreOpToVkStoreOp(static_cast<RenderPassStoreOp>(ops.storeOp)); in UnpackAttachmentDesc()
226 desc->storeOp = isInvalidated ? VK_ATTACHMENT_STORE_OP_DONT_CARE : VK_ATTACHMENT_STORE_OP_STORE; in UnpackColorResolveAttachmentDesc()
259 desc->storeOp = in UnpackDepthStencilResolveAttachmentDesc()
622 desc2Out->storeOp = desc.storeOp; in ToAttachmentDesciption2()
854 ds.storeOp == static_cast<uint16_t>(RenderPassStoreOp::Store) ? 1 : 0; in UpdateRenderPassDepthStencilPerfCounters()
890 dsResolve.storeOp == static_cast<uint16_t>(RenderPassStoreOp::Store) ? 1 : 0; in UpdateRenderPassDepthStencilResolvePerfCounters()
[all …]
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/
DDrawTester.cpp119 attachments[0].storeOp = vk::AttachmentStoreOp::eStore; in createRenderPass()
129 attachments[1].storeOp = vk::AttachmentStoreOp::eStore; in createRenderPass()
140 attachments[0].storeOp = vk::AttachmentStoreOp::eStore; in createRenderPass()

123456