Home
last modified time | relevance | path

Searched refs:loadOp (Results 1 - 25 of 148) sorted by relevance

123456

/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
H A DRenderPassBuilderD3D12.cpp27 D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE D3D12BeginningAccessType(wgpu::LoadOp loadOp) { in D3D12BeginningAccessType() argument
28 switch (loadOp) { in D3D12BeginningAccessType()
151 wgpu::LoadOp loadOp,
155 D3D12BeginningAccessType(loadOp);
156 if (loadOp == wgpu::LoadOp::Clear) {
192 void RenderPassBuilder::SetDepthAccess(wgpu::LoadOp loadOp,
197 mRenderPassDepthStencilDesc.DepthBeginningAccess.Type = D3D12BeginningAccessType(loadOp);
198 if (loadOp == wgpu::LoadOp::Clear) {
206 void RenderPassBuilder::SetStencilAccess(wgpu::LoadOp loadOp,
210 mRenderPassDepthStencilDesc.StencilBeginningAccess.Type = D3D12BeginningAccessType(loadOp);
[all...]
H A DRenderPassBuilderD3D12.h56 void SetDepthAccess(wgpu::LoadOp loadOp,
63 wgpu::LoadOp loadOp,
71 void SetStencilAccess(wgpu::LoadOp loadOp,
/third_party/skia/src/gpu/vk/
H A DGrVkOpsRenderPass.cpp38 VkAttachmentLoadOp* loadOp, VkAttachmentStoreOp* storeOp) { in get_vk_load_store_ops()
41 *loadOp = VK_ATTACHMENT_LOAD_OP_LOAD; in get_vk_load_store_ops()
44 *loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR; in get_vk_load_store_ops()
47 *loadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; in get_vk_load_store_ops()
51 *loadOp = VK_ATTACHMENT_LOAD_OP_LOAD; in get_vk_load_store_ops()
228 VkAttachmentLoadOp loadOp; 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, storeO 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()
29 : fLoadOp(loadOp) in LoadStoreOps()
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
H A DRenderPassCache.cpp53 wgpu::LoadOp loadOp, in SetColor()
58 colorLoadOp[index] = loadOp; in SetColor()
135 attachmentDesc.loadOp = VulkanAttachmentLoadOp(query.colorLoadOp[i]); in CreateRenderPassForQuery()
159 attachmentDesc.loadOp = VulkanAttachmentLoadOp(query.depthLoadOp); in CreateRenderPassForQuery()
183 attachmentDesc.loadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; in CreateRenderPassForQuery()
51 SetColor(ColorAttachmentIndex index, wgpu::TextureFormat format, wgpu::LoadOp loadOp, wgpu::StoreOp storeOp, bool hasResolveTarget) SetColor() argument
H A DRenderPassCache.h43 wgpu::LoadOp loadOp,
/third_party/mesa3d/src/vulkan/runtime/
H A Dvk_render_pass.c124 .loadOp = pCreateInfo->pAttachments[i].loadOp, in vk_common_CreateRenderPass()
338 .load_op = desc->loadOp, in vk_render_pass_attachment_init()
954 .loadOp = VK_ATTACHMENT_LOAD_OP_LOAD, in vk_get_command_buffer_inheritance_as_rendering_resume()
973 .loadOp = VK_ATTACHMENT_LOAD_OP_LOAD, in vk_get_command_buffer_inheritance_as_rendering_resume()
984 .loadOp = VK_ATTACHMENT_LOAD_OP_LOAD, in vk_get_command_buffer_inheritance_as_rendering_resume()
1520 .loadOp = rp_att->load_op, in load_attachment()
1529 .loadOp = rp_att->stencil_load_op, in load_attachment()
1607 color_attachment->loadOp = rp_att->load_op; in begin_subpass()
1617 assert(color_attachment->loadOp in begin_subpass()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassTestsUtil.hpp50 VkAttachmentLoadOp loadOp,
65 VkAttachmentLoadOp loadOp,
356 VkAttachmentLoadOp loadOp,
H A DvktRenderPassTests.cpp674 VkAttachmentLoadOp loadOp, in Attachment()
685 , m_loadOp (loadOp) in Attachment()
1149 attachment.getLoadOp(), // VkAttachmentLoadOp loadOp; || VkAttachmentLoadOp loadOp; in createAttachmentDescription()
2186 colorAttachmentInfo.getLoadOp(), // VkAttachmentLoadOp loadOp in beginDynamicRendering()
2205 VK_ATTACHMENT_LOAD_OP_LOAD, // VkAttachmentLoadOp loadOp; in beginDynamicRendering()
2222 depthAttachment.loadOp = dsAttachmentInfo.getLoadOp(); in beginDynamicRendering()
2235 stencilAttachment.loadOp = dsAttachmentInfo.getStencilLoadOp(); in beginDynamicRendering()
5373 VK_ATTACHMENT_LOAD_OP_CLEAR, // VkAttachmentLoadOp loadOp
5714 const VkAttachmentLoadOp loadOp
671 Attachment(VkFormat format, VkSampleCountFlagBits samples, VkAttachmentLoadOp loadOp, VkAttachmentStoreOp storeOp, VkAttachmentLoadOp stencilLoadOp, VkAttachmentStoreOp stencilStoreOp, VkImageLayout initialLayout, VkImageLayout finalLayout) Attachment() argument
[all...]
H A DvktRenderPassTestsUtil.cpp56 loadOp = loadOp_; in AttachmentDescription1()
80 loadOp = loadOp_; in AttachmentDescription2()
522 VkAttachmentLoadOp loadOp, in Attachment()
533 , m_loadOp (loadOp) in Attachment()
624 attachment.getLoadOp(), // VkAttachmentLoadOp loadOp; || VkAttachmentLoadOp loadOp; 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.cpp65 VkAttachmentLoadOp loadOp; member
113 VK_ATTACHMENT_LOAD_OP_CLEAR, // VkAttachmentLoadOp loadOp in createRenderPass()
126 testParams.loadOp, // VkAttachmentLoadOp loadOp in createRenderPass()
139 VK_ATTACHMENT_LOAD_OP_CLEAR, // VkAttachmentLoadOp loadOp in createRenderPass()
936 std::string loadOpToString (VkAttachmentLoadOp loadOp) in loadOpToString() argument
938 switch (loadOp) in loadOpToString()
1003 params.loadOp = loadOps[loadOpIdx]; in createRenderPassUnusedAttachmentTests()
/third_party/skia/src/gpu/dawn/
H A DGrDawnOpsRenderPass.cpp25 static wgpu::LoadOp to_dawn_load_op(GrLoadOp loadOp) { in to_dawn_load_op() argument
26 switch (loadOp) { in to_dawn_load_op()
68 colorAttachment.loadOp = colorOp; in beginRenderPass()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
H A DvktRenderPassTestsUtil.hpp50 VkAttachmentLoadOp loadOp,
65 VkAttachmentLoadOp loadOp,
356 VkAttachmentLoadOp loadOp,
H A DvktRenderPassTests.cpp664 VkAttachmentLoadOp loadOp, in Attachment()
675 , m_loadOp (loadOp) in Attachment()
1137 attachment.getLoadOp(), // VkAttachmentLoadOp loadOp; || VkAttachmentLoadOp loadOp; in createAttachmentDescription()
2172 colorAttachmentInfo.getLoadOp(), // VkAttachmentLoadOp loadOp in beginDynamicRendering()
2191 VK_ATTACHMENT_LOAD_OP_LOAD, // VkAttachmentLoadOp loadOp; in beginDynamicRendering()
2208 depthAttachment.loadOp = dsAttachmentInfo.getLoadOp(); in beginDynamicRendering()
2221 stencilAttachment.loadOp = dsAttachmentInfo.getStencilLoadOp(); in beginDynamicRendering()
5348 VK_ATTACHMENT_LOAD_OP_CLEAR, // VkAttachmentLoadOp loadOp
5689 const VkAttachmentLoadOp loadOp
661 Attachment(VkFormat format, VkSampleCountFlagBits samples, VkAttachmentLoadOp loadOp, VkAttachmentStoreOp storeOp, VkAttachmentLoadOp stencilLoadOp, VkAttachmentStoreOp stencilStoreOp, VkImageLayout initialLayout, VkImageLayout finalLayout) Attachment() argument
[all...]
H A DvktRenderPassTestsUtil.cpp56 loadOp = loadOp_; in AttachmentDescription1()
80 loadOp = loadOp_; in AttachmentDescription2()
522 VkAttachmentLoadOp loadOp, in Attachment()
533 , m_loadOp (loadOp) in Attachment()
624 attachment.getLoadOp(), // VkAttachmentLoadOp loadOp; || VkAttachmentLoadOp loadOp; 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.cpp65 VkAttachmentLoadOp loadOp; member
113 VK_ATTACHMENT_LOAD_OP_CLEAR, // VkAttachmentLoadOp loadOp in createRenderPass()
126 testParams.loadOp, // VkAttachmentLoadOp loadOp in createRenderPass()
139 VK_ATTACHMENT_LOAD_OP_CLEAR, // VkAttachmentLoadOp loadOp in createRenderPass()
938 std::string loadOpToString (VkAttachmentLoadOp loadOp) in loadOpToString() argument
940 switch (loadOp) in loadOpToString()
1004 params.loadOp = loadOps[loadOpIdx]; in createRenderPassUnusedAttachmentTests()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/multiview/
H A DvktMultiViewRenderPassUtil.hpp44 VkAttachmentLoadOp loadOp,
59 VkAttachmentLoadOp loadOp,
H A DvktMultiViewRenderPassUtil.cpp53 loadOp = loadOp_; in AttachmentDescription1()
77 loadOp = loadOp_; in AttachmentDescription2()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/multiview/
H A DvktMultiViewRenderPassUtil.hpp44 VkAttachmentLoadOp loadOp,
59 VkAttachmentLoadOp loadOp,
H A DvktMultiViewRenderPassUtil.cpp53 loadOp = loadOp_; in AttachmentDescription1()
77 loadOp = loadOp_; in AttachmentDescription2()
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_render_pass.c86 attachments[i].loadOp = get_rt_loadop(rt, rt->clear_color); in create_render_pass2()
110 if (attachments[i].loadOp == VK_ATTACHMENT_LOAD_OP_LOAD) in create_render_pass2()
115 attachments[cresolve_offset + i].loadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; in create_render_pass2()
120 if (attachments[cresolve_offset + i].loadOp == VK_ATTACHMENT_LOAD_OP_LOAD) in create_render_pass2()
134 attachments[num_attachments].loadOp = rt->clear_color ? VK_ATTACHMENT_LOAD_OP_CLEAR : VK_ATTACHMENT_LOAD_OP_LOAD; in create_render_pass2()
148 if (attachments[num_attachments].loadOp == VK_ATTACHMENT_LOAD_OP_LOAD || in create_render_pass2()
158 attachments[zsresolve_offset].loadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; in create_render_pass2()
165 if (attachments[zsresolve_offset].loadOp == VK_ATTACHMENT_LOAD_OP_LOAD || in create_render_pass2()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkFramebuffer.cpp77 // This gets called at the start of a renderpass. Logically the `loadOp` gets executed at the in executeLoadOp()
89 switch(attachment.loadOp) in executeLoadOp()
100 UNSUPPORTED("attachment.loadOp %d", attachment.loadOp); in executeLoadOp()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DClipSpaceTests.cpp76 renderPassDescriptor.cColorAttachments[0].loadOp = wgpu::LoadOp::Clear; in TEST_P()
/third_party/skia/third_party/externals/dawn/examples/
H A DManualSwapChainTest.cpp140 desc.cColorAttachments[0].loadOp = wgpu::LoadOp::Load; in DoRender()
153 desc.cColorAttachments[0].loadOp = wgpu::LoadOp::Clear; in DoRender()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DCommandBuffer.cpp115 // If the loadOp is Load, but the subresource is not initialized, use Clear instead. in LazyClearRenderPassAttachments()
116 if (attachmentInfo.loadOp == wgpu::LoadOp::Load && in LazyClearRenderPassAttachments()
118 attachmentInfo.loadOp = wgpu::LoadOp::Clear; in LazyClearRenderPassAttachments()

Completed in 38 milliseconds

123456