/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
D | RenderPassBuilderD3D12.cpp | 27 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 …]
|
D | RenderPassBuilderD3D12.h | 56 void SetDepthAccess(wgpu::LoadOp loadOp, 63 wgpu::LoadOp loadOp, 71 void SetStencilAccess(wgpu::LoadOp loadOp,
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
D | zink_render_pass.c | 48 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/ |
D | RenderPassCache.cpp | 41 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()
|
D | RenderPassCache.h | 39 dawn::LoadOp loadOp,
|
/third_party/skia/src/gpu/vk/ |
D | GrVkOpsRenderPass.cpp | 36 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 …]
|
D | GrVkRenderPass.h | 28 LoadStoreOps(VkAttachmentLoadOp loadOp, VkAttachmentStoreOp storeOp) in LoadStoreOps() 29 : fLoadOp(loadOp) in LoadStoreOps()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
D | RenderPassCache.cpp | 53 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()
|
D | RenderPassCache.h | 43 wgpu::LoadOp loadOp,
|
/third_party/flutter/skia/src/gpu/vk/ |
D | GrVkRenderPass.h | 36 LoadStoreOps(VkAttachmentLoadOp loadOp, VkAttachmentStoreOp storeOp) in LoadStoreOps() 37 : fLoadOp(loadOp) in LoadStoreOps()
|
D | GrVkRenderPass.cpp | 26 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/ |
D | GrDawnOpsRenderPass.cpp | 25 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/ |
D | vktRenderPassTestsUtil.hpp | 61 VkAttachmentLoadOp loadOp, 76 VkAttachmentLoadOp loadOp, 367 VkAttachmentLoadOp loadOp,
|
D | vktRenderPassUnusedAttachmentTests.cpp | 64 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()
|
D | vktRenderPassTests.cpp | 653 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 …]
|
D | vktRenderPassTestsUtil.cpp | 56 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/ |
D | vktMultiViewRenderPassUtil.hpp | 44 VkAttachmentLoadOp loadOp, 59 VkAttachmentLoadOp loadOp,
|
D | vktMultiViewRenderPassUtil.cpp | 53 loadOp = loadOp_; in AttachmentDescription1() 77 loadOp = loadOp_; in AttachmentDescription2()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/doc/ |
D | DeferredClears.md | 10 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/ |
D | VkFramebuffer.cpp | 89 switch(attachment.loadOp) in executeLoadOp() 100 UNSUPPORTED("attachment.loadOp %d", attachment.loadOp); in executeLoadOp()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
D | CommandBuffer.cpp | 116 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/ |
D | CreatePipelineAsyncTests.cpp | 82 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/ |
D | ViewportTests.cpp | 117 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/ |
D | ManualSwapChainTest.cpp | 140 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/ |
D | vk_render_pass.c | 119 .loadOp = pCreateInfo->pAttachments[i].loadOp, in vk_common_CreateRenderPass()
|