Home
last modified time | relevance | path

Searched refs:loadOp (Results 1 – 25 of 142) sorted by relevance

123456

/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DRenderPassBuilderD3D12.cpp27 D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE D3D12BeginningAccessType(wgpu::LoadOp loadOp) { in D3D12BeginningAccessType() argument
28 switch (loadOp) { in D3D12BeginningAccessType()
151 wgpu::LoadOp loadOp, in SetRenderTargetBeginningAccess() argument
155 D3D12BeginningAccessType(loadOp); in SetRenderTargetBeginningAccess()
156 if (loadOp == wgpu::LoadOp::Clear) { in SetRenderTargetBeginningAccess()
192 void RenderPassBuilder::SetDepthAccess(wgpu::LoadOp loadOp, in SetDepthAccess() argument
197 mRenderPassDepthStencilDesc.DepthBeginningAccess.Type = D3D12BeginningAccessType(loadOp); in SetDepthAccess()
198 if (loadOp == wgpu::LoadOp::Clear) { in SetDepthAccess()
206 void RenderPassBuilder::SetStencilAccess(wgpu::LoadOp loadOp, in SetStencilAccess() argument
210 mRenderPassDepthStencilDesc.StencilBeginningAccess.Type = D3D12BeginningAccessType(loadOp); in SetStencilAccess()
[all …]
DRenderPassBuilderD3D12.h56 void SetDepthAccess(wgpu::LoadOp loadOp,
63 wgpu::LoadOp loadOp,
71 void SetStencilAccess(wgpu::LoadOp loadOp,
/third_party/mesa3d/src/gallium/drivers/zink/
Dzink_render_pass.c48 attachments[i].loadOp = rt->clear_color ? VK_ATTACHMENT_LOAD_OP_CLEAR : in create_render_pass()
65 if (attachments[i].loadOp == VK_ATTACHMENT_LOAD_OP_LOAD) in create_render_pass()
77 …attachments[num_attachments].loadOp = rt->clear_color ? VK_ATTACHMENT_LOAD_OP_CLEAR : VK_ATTACHMEN… in create_render_pass()
88 if (attachments[num_attachments].loadOp == VK_ATTACHMENT_LOAD_OP_LOAD || in create_render_pass()
151 attachments[i].loadOp = rt->clear_color ? VK_ATTACHMENT_LOAD_OP_CLEAR : in create_render_pass2()
176 if (attachments[i].loadOp == VK_ATTACHMENT_LOAD_OP_LOAD) in create_render_pass2()
181 attachments[cresolve_offset + i].loadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; in create_render_pass2()
186 if (attachments[cresolve_offset + i].loadOp == VK_ATTACHMENT_LOAD_OP_LOAD) in create_render_pass2()
201 …attachments[num_attachments].loadOp = rt->clear_color ? VK_ATTACHMENT_LOAD_OP_CLEAR : VK_ATTACHMEN… in create_render_pass2()
215 if (attachments[num_attachments].loadOp == VK_ATTACHMENT_LOAD_OP_LOAD || in create_render_pass2()
[all …]
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DRenderPassCache.cpp41 dawn::LoadOp loadOp, in SetColor() argument
45 colorLoadOp[index] = loadOp; in SetColor()
111 attachmentDesc.loadOp = VulkanAttachmentLoadOp(query.colorLoadOp[i]); in CreateRenderPassForQuery()
132 attachmentDesc.loadOp = VulkanAttachmentLoadOp(query.depthLoadOp); in CreateRenderPassForQuery()
153 attachmentDesc.loadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; in CreateRenderPassForQuery()
DRenderPassCache.h39 dawn::LoadOp loadOp,
/third_party/skia/src/gpu/vk/
DGrVkOpsRenderPass.cpp36 VkAttachmentLoadOp* loadOp, VkAttachmentStoreOp* storeOp) { in get_vk_load_store_ops() argument
39 *loadOp = VK_ATTACHMENT_LOAD_OP_LOAD; in get_vk_load_store_ops()
42 *loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR; in get_vk_load_store_ops()
45 *loadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; in get_vk_load_store_ops()
49 *loadOp = VK_ATTACHMENT_LOAD_OP_LOAD; in get_vk_load_store_ops()
226 VkAttachmentLoadOp loadOp; 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()
[all …]
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/
DRenderPassCache.cpp53 wgpu::LoadOp loadOp, in SetColor() argument
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()
DRenderPassCache.h43 wgpu::LoadOp loadOp,
/third_party/flutter/skia/src/gpu/vk/
DGrVkRenderPass.h36 LoadStoreOps(VkAttachmentLoadOp loadOp, VkAttachmentStoreOp storeOp) in LoadStoreOps()
37 : fLoadOp(loadOp) in LoadStoreOps()
DGrVkRenderPass.cpp26 attachment->loadOp = desc.fLoadStoreOps.fLoadOp; in setup_vk_attachment_description()
32 attachment->loadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; in setup_vk_attachment_description()
/third_party/skia/src/gpu/dawn/
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/vulkan/renderpass/
DvktRenderPassTestsUtil.hpp61 VkAttachmentLoadOp loadOp,
76 VkAttachmentLoadOp loadOp,
367 VkAttachmentLoadOp loadOp,
DvktRenderPassUnusedAttachmentTests.cpp64 VkAttachmentLoadOp loadOp; member
125 testParams.loadOp, // VkAttachmentLoadOp loadOp in createRenderPass()
937 std::string loadOpToString (VkAttachmentLoadOp loadOp) in loadOpToString() argument
939 switch (loadOp) in loadOpToString()
1003 params.loadOp = loadOps[loadOpIdx]; in createRenderPassUnusedAttachmentTests()
DvktRenderPassTests.cpp653 VkAttachmentLoadOp loadOp, in Attachment() argument
664 , m_loadOp (loadOp) in Attachment()
2901 depthAttachment.loadOp = dsAttachmentInfo.getLoadOp(); in pushDynamicRenderingCommands()
2914 stencilAttachment.loadOp = dsAttachmentInfo.getStencilLoadOp(); in pushDynamicRenderingCommands()
5364 …const VkAttachmentLoadOp loadOp = rng.choose<VkAttachmentLoadOp>(DE_ARRAY_BEGIN(loadOps), DE_ARR… in addAttachmentTests() local
5389 …attachments.push_back(Attachment(format, sampleCount, loadOp, storeOp, stencilLoadOp, stencilStore… in addAttachmentTests()
5397 …const VkAttachmentLoadOp loadOp = rng.choose<VkAttachmentLoadOp>(DE_ARRAY_BEGIN(loadOps), DE_ARR… in addAttachmentTests() local
5421 …attachments.push_back(Attachment(format, sampleCount, loadOp, storeOp, stencilLoadOp, stencilStore… in addAttachmentTests()
5494 const VkAttachmentLoadOp loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR; in addAttachmentWriteMaskTests() local
5503 …attachments.push_back(Attachment(format, sampleCount, loadOp, storeOp, stencilLoadOp, stencilStore… in addAttachmentWriteMaskTests()
[all …]
DvktRenderPassTestsUtil.cpp56 loadOp = loadOp_; in AttachmentDescription1()
80 loadOp = loadOp_; in AttachmentDescription2()
522 VkAttachmentLoadOp loadOp, in Attachment() argument
533 , m_loadOp (loadOp) in Attachment()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/multiview/
DvktMultiViewRenderPassUtil.hpp44 VkAttachmentLoadOp loadOp,
59 VkAttachmentLoadOp loadOp,
DvktMultiViewRenderPassUtil.cpp53 loadOp = loadOp_; in AttachmentDescription1()
77 loadOp = loadOp_; in AttachmentDescription2()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/doc/
DDeferredClears.md10 through `loadOp` of the render pass for step 3, assuming step 2 doesn't use the attachments of FBO1.
36 way or another. In most cases, this implies starting a new render pass and using `loadOp`s to
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkFramebuffer.cpp89 switch(attachment.loadOp) in executeLoadOp()
100 UNSUPPORTED("attachment.loadOp %d", attachment.loadOp); in executeLoadOp()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DCommandBuffer.cpp116 if (attachmentInfo.loadOp == wgpu::LoadOp::Load && in LazyClearRenderPassAttachments()
118 attachmentInfo.loadOp = wgpu::LoadOp::Clear; in LazyClearRenderPassAttachments()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DCreatePipelineAsyncTests.cpp82 renderPassDescriptor.cColorAttachments[0].loadOp = wgpu::LoadOp::Clear; in ValidateCreateRenderPipelineAsync()
295 renderPassDescriptor.cColorAttachments[0].loadOp = wgpu::LoadOp::Clear; in TEST_P()
730 renderPass.cColorAttachments[0].loadOp = wgpu::LoadOp::Clear; in TEST_P()
803 renderPass.cColorAttachments[0].loadOp = wgpu::LoadOp::Clear; in TEST_P()
875 renderPass.cColorAttachments[0].loadOp = wgpu::LoadOp::Clear; in TEST_P()
877 renderPass.cColorAttachments[1].loadOp = wgpu::LoadOp::Clear; in TEST_P()
/third_party/flutter/skia/third_party/externals/dawn/src/tests/end2end/
DViewportTests.cpp117 renderPassDescriptor1.cColorAttachmentsInfoPtr[0]->loadOp = dawn::LoadOp::Clear; in DoTest()
142 renderPassDescriptor2.cColorAttachmentsInfoPtr[0]->loadOp = dawn::LoadOp::Clear; in DoTest()
/third_party/skia/third_party/externals/dawn/examples/
DManualSwapChainTest.cpp140 desc.cColorAttachments[0].loadOp = wgpu::LoadOp::Load; in DoRender()
153 desc.cColorAttachments[0].loadOp = wgpu::LoadOp::Clear; in DoRender()
/third_party/mesa3d/src/vulkan/util/
Dvk_render_pass.c119 .loadOp = pCreateInfo->pAttachments[i].loadOp, in vk_common_CreateRenderPass()

123456