Home
last modified time | relevance | path

Searched refs:storeOp (Results 1 - 25 of 116) sorted by relevance

12345

/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
H A 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()
58 if (storeOp == wgpu::StoreOp::Discard) { in D3D12EndingAccessResolveParameters()
60 } else if (storeOp == wgpu::StoreOp::Store) { in D3D12EndingAccessResolveParameters()
171 wgpu::StoreOp storeOp) {
173 D3D12EndingAccessType(storeOp);
177 wgpu::StoreOp storeOp,
183 D3D12EndingAccessResolveParameters(storeOp, resolveSource, resolveDestination);
193 wgpu::StoreOp storeOp,
45 D3D12EndingAccessResolveParameters( wgpu::StoreOp storeOp, TextureView* resolveSource, TextureView* resolveDestination) D3D12EndingAccessResolveParameters() argument
[all...]
H A DRenderPassBuilderD3D12.h57 wgpu::StoreOp storeOp,
66 void SetRenderTargetEndingAccess(ColorAttachmentIndex attachment, wgpu::StoreOp storeOp);
68 wgpu::StoreOp storeOp,
72 wgpu::StoreOp storeOp,
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
H A DRenderPassCache.cpp54 wgpu::StoreOp storeOp, in SetColor()
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()
51 SetColor(ColorAttachmentIndex index, wgpu::TextureFormat format, wgpu::LoadOp loadOp, wgpu::StoreOp storeOp, bool hasResolveTarget) SetColor() argument
H A DRenderPassCache.h44 wgpu::StoreOp storeOp,
/third_party/skia/src/gpu/vk/
H A DGrVkOpsRenderPass.cpp38 VkAttachmentLoadOp* loadOp, VkAttachmentStoreOp* storeOp) { in get_vk_load_store_ops()
56 *storeOp = VK_ATTACHMENT_STORE_OP_STORE; in get_vk_load_store_ops()
59 *storeOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; in get_vk_load_store_ops()
63 *storeOp = VK_ATTACHMENT_STORE_OP_STORE; in get_vk_load_store_ops()
229 VkAttachmentStoreOp storeOp; in init() local
230 get_vk_load_store_ops(colorInfo.fLoadOp, colorInfo.fStoreOp, &loadOp, &storeOp); in init()
231 GrVkRenderPass::LoadStoreOps vkColorOps(loadOp, storeOp); in init()
233 get_vk_load_store_ops(resolveInfo.fLoadOp, resolveInfo.fStoreOp, &loadOp, &storeOp); in init()
234 GrVkRenderPass::LoadStoreOps vkResolveOps(loadOp, storeOp); in init()
236 get_vk_load_store_ops(stencilInfo.fLoadOp, stencilInfo.fStoreOp, &loadOp, &storeOp); in init()
37 get_vk_load_store_ops(GrLoadOp loadOpIn, GrStoreOp storeOpIn, VkAttachmentLoadOp* loadOp, VkAttachmentStoreOp* storeOp) get_vk_load_store_ops() argument
[all...]
H A DGrVkRenderPass.h28 LoadStoreOps(VkAttachmentLoadOp loadOp, VkAttachmentStoreOp storeOp) in LoadStoreOps()
30 , fStoreOp(storeOp) {} in LoadStoreOps()
/third_party/mesa3d/src/vulkan/runtime/
H A 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 in begin_subpass()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassTestsUtil.hpp51 VkAttachmentStoreOp storeOp,
66 VkAttachmentStoreOp storeOp,
357 VkAttachmentStoreOp storeOp,
H A DvktRenderPassTestsUtil.cpp57 storeOp = storeOp_; in AttachmentDescription1()
81 storeOp = storeOp_; in AttachmentDescription2()
523 VkAttachmentStoreOp storeOp, in Attachment()
534 , m_storeOp (storeOp) in Attachment()
625 attachment.getStoreOp(), // VkAttachmentStoreOp storeOp; || VkAttachmentStoreOp storeOp; in createAttachmentDescription()
519 Attachment(VkFormat format, VkSampleCountFlagBits samples, VkAttachmentLoadOp loadOp, VkAttachmentStoreOp storeOp, VkAttachmentLoadOp stencilLoadOp, VkAttachmentStoreOp stencilStoreOp, VkImageLayout initialLayout, VkImageLayout finalLayout) Attachment() argument
H A DvktRenderPassUnusedAttachmentTests.cpp66 VkAttachmentStoreOp storeOp; member
114 VK_ATTACHMENT_STORE_OP_STORE, // VkAttachmentStoreOp storeOp in createRenderPass()
127 testParams.storeOp, // VkAttachmentStoreOp storeOp in createRenderPass()
140 VK_ATTACHMENT_STORE_OP_STORE, // VkAttachmentStoreOp storeOp in createRenderPass()
952 std::string storeOpToString (VkAttachmentStoreOp storeOp) in storeOpToString() argument
954 switch (storeOp) in storeOpToString()
1004 params.storeOp = storeOps[storeOpIdx]; in createRenderPassUnusedAttachmentTests()
H A DvktRenderPassTests.cpp675 VkAttachmentStoreOp storeOp, in Attachment()
686 , m_storeOp (storeOp) in Attachment()
1150 attachment.getStoreOp(), // VkAttachmentStoreOp storeOp; || VkAttachmentStoreOp storeOp; in createAttachmentDescription()
2187 colorAttachmentInfo.getStoreOp(), // VkAttachmentStoreOp storeOp in beginDynamicRendering()
2206 VK_ATTACHMENT_STORE_OP_STORE, // VkAttachmentStoreOp storeOp; in beginDynamicRendering()
2223 depthAttachment.storeOp = dsAttachmentInfo.getStoreOp(); in beginDynamicRendering()
2236 stencilAttachment.storeOp = dsAttachmentInfo.getStencilStoreOp(); in beginDynamicRendering()
5374 VK_ATTACHMENT_STORE_OP_STORE, // VkAttachmentStoreOp storeOp
5715 const VkAttachmentStoreOp storeOp
671 Attachment(VkFormat format, VkSampleCountFlagBits samples, VkAttachmentLoadOp loadOp, VkAttachmentStoreOp storeOp, VkAttachmentLoadOp stencilLoadOp, VkAttachmentStoreOp stencilStoreOp, VkImageLayout initialLayout, VkImageLayout finalLayout) Attachment() argument
[all...]
H A DvktRenderPassLoadStoreOpNoneTests.cpp96 VkAttachmentStoreOp storeOp; member
261 testParams.attachments[i].storeOp, // VkAttachmentStoreOp storeOp in createRenderPass()
600 VK_ATTACHMENT_STORE_OP_STORE, // VkAttachmentStoreOp storeOp; in createCommandBuffer()
614 VK_ATTACHMENT_STORE_OP_STORE, // VkAttachmentStoreOp storeOp; in createCommandBuffer()
639 m_testParams.attachments[i].storeOp, // VkAttachmentStoreOp storeOp; in createCommandBuffer()
657 m_testParams.attachments[i].storeOp, // VkAttachmentStoreOp storeOp; in createCommandBuffer()
670 depthAttachment.storeOp in createCommandBuffer()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
H A DvktRenderPassTestsUtil.hpp51 VkAttachmentStoreOp storeOp,
66 VkAttachmentStoreOp storeOp,
357 VkAttachmentStoreOp storeOp,
H A DvktRenderPassTestsUtil.cpp57 storeOp = storeOp_; in AttachmentDescription1()
81 storeOp = storeOp_; in AttachmentDescription2()
523 VkAttachmentStoreOp storeOp, in Attachment()
534 , m_storeOp (storeOp) in Attachment()
625 attachment.getStoreOp(), // VkAttachmentStoreOp storeOp; || VkAttachmentStoreOp storeOp; in createAttachmentDescription()
519 Attachment(VkFormat format, VkSampleCountFlagBits samples, VkAttachmentLoadOp loadOp, VkAttachmentStoreOp storeOp, VkAttachmentLoadOp stencilLoadOp, VkAttachmentStoreOp stencilStoreOp, VkImageLayout initialLayout, VkImageLayout finalLayout) Attachment() argument
H A DvktRenderPassUnusedAttachmentTests.cpp66 VkAttachmentStoreOp storeOp; member
114 VK_ATTACHMENT_STORE_OP_STORE, // VkAttachmentStoreOp storeOp in createRenderPass()
127 testParams.storeOp, // VkAttachmentStoreOp storeOp in createRenderPass()
140 VK_ATTACHMENT_STORE_OP_STORE, // 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()
H A DvktRenderPassTests.cpp665 VkAttachmentStoreOp storeOp, in Attachment()
676 , m_storeOp (storeOp) in Attachment()
1138 attachment.getStoreOp(), // VkAttachmentStoreOp storeOp; || VkAttachmentStoreOp storeOp; in createAttachmentDescription()
2173 colorAttachmentInfo.getStoreOp(), // VkAttachmentStoreOp storeOp in beginDynamicRendering()
2192 VK_ATTACHMENT_STORE_OP_STORE, // VkAttachmentStoreOp storeOp; in beginDynamicRendering()
2209 depthAttachment.storeOp = dsAttachmentInfo.getStoreOp(); in beginDynamicRendering()
2222 stencilAttachment.storeOp = dsAttachmentInfo.getStencilStoreOp(); in beginDynamicRendering()
5349 VK_ATTACHMENT_STORE_OP_STORE, // VkAttachmentStoreOp storeOp
5690 const VkAttachmentStoreOp storeOp
661 Attachment(VkFormat format, VkSampleCountFlagBits samples, VkAttachmentLoadOp loadOp, VkAttachmentStoreOp storeOp, VkAttachmentLoadOp stencilLoadOp, VkAttachmentStoreOp stencilStoreOp, VkImageLayout initialLayout, VkImageLayout finalLayout) Attachment() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/multiview/
H A DvktMultiViewRenderPassUtil.hpp45 VkAttachmentStoreOp storeOp,
60 VkAttachmentStoreOp storeOp,
H A DvktMultiViewRenderPassUtil.cpp54 storeOp = storeOp_; in AttachmentDescription1()
78 storeOp = storeOp_; in AttachmentDescription2()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/multiview/
H A DvktMultiViewRenderPassUtil.hpp45 VkAttachmentStoreOp storeOp,
60 VkAttachmentStoreOp storeOp,
H A DvktMultiViewRenderPassUtil.cpp54 storeOp = storeOp_; in AttachmentDescription1()
78 storeOp = storeOp_; in AttachmentDescription2()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/fragment_ops/
H A DvktFragmentOperationsTransientAttachmentTests.cpp162 const VkAttachmentStoreOp storeOp, in makeAttachment()
176 storeOp, // VkAttachmentStoreOp storeOp; in makeAttachment()
178 hasStencil ? storeOp : VK_ATTACHMENT_STORE_OP_DONT_CARE, // VkAttachmentStoreOp stencilStoreOp; in makeAttachment()
159 makeAttachment( const VkFormat format, const VkAttachmentLoadOp loadOp, const VkAttachmentStoreOp storeOp, const VkImageLayout initialLayout, const VkImageLayout finalLayout) makeAttachment() argument
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_ops/
H A DvktFragmentOperationsTransientAttachmentTests.cpp162 const VkAttachmentStoreOp storeOp, in makeAttachment()
176 storeOp, // VkAttachmentStoreOp storeOp; in makeAttachment()
178 hasStencil ? storeOp : VK_ATTACHMENT_STORE_OP_DONT_CARE, // VkAttachmentStoreOp stencilStoreOp; in makeAttachment()
159 makeAttachment( const VkFormat format, const VkAttachmentLoadOp loadOp, const VkAttachmentStoreOp storeOp, const VkImageLayout initialLayout, const VkImageLayout finalLayout) makeAttachment() argument
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/
H A 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()
/third_party/skia/third_party/externals/dawn/examples/
H A DCHelloTriangle.cpp117 colorAttachment.storeOp = WGPUStoreOp_Store; in frame()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkPipelineConstructionUtil.cpp529 m_attachments[i].storeOp = pCreateInfo->pAttachments[i].storeOp; in RenderPassWrapper()
560 subpass.m_colorAttachments[i].attachmentInfo.storeOp = pCreateInfo->pAttachments[j].storeOp; in RenderPassWrapper()
584 subpass.m_depthStencilAttachment.attachmentInfo.storeOp = pCreateInfo->pAttachments[j].storeOp; in RenderPassWrapper()
613 subpass.m_resolveAttachments[i].attachmentInfo.storeOp = pCreateInfo->pAttachments[j].storeOp; in RenderPassWrapper()
699 subpass.m_colorAttachments[i].attachmentInfo.storeOp = pCreateInfo->pAttachments[j].storeOp; in RenderPassWrapper()
[all...]

Completed in 38 milliseconds

12345