Home
last modified time | relevance | path

Searched refs:StoreOp (Results 1 – 25 of 48) sorted by relevance

12

/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DRenderPassCache.h44 wgpu::StoreOp storeOp,
48 wgpu::StoreOp depthStoreOp,
50 wgpu::StoreOp stencilStoreOp,
58 ityp::array<ColorAttachmentIndex, wgpu::StoreOp, kMaxColorAttachments> colorStoreOp;
63 wgpu::StoreOp depthStoreOp;
65 wgpu::StoreOp stencilStoreOp;
DRenderPassCache.cpp36 VkAttachmentStoreOp VulkanAttachmentStoreOp(wgpu::StoreOp op) { in VulkanAttachmentStoreOp()
40 case wgpu::StoreOp::Store: in VulkanAttachmentStoreOp()
42 case wgpu::StoreOp::Discard: in VulkanAttachmentStoreOp()
54 wgpu::StoreOp storeOp, in SetColor()
65 wgpu::StoreOp depthStoreOpIn, in SetDepthStencil()
67 wgpu::StoreOp stencilStoreOpIn, in SetDepthStencil()
DRenderPipelineVk.cpp509 wgpu::StoreOp::Store, false); in Initialize()
514 wgpu::StoreOp::Store, wgpu::LoadOp::Load, in Initialize()
515 wgpu::StoreOp::Store, false); in Initialize()
/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()
38 case wgpu::StoreOp::Discard: in D3D12EndingAccessType()
40 case wgpu::StoreOp::Store: 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) { in SetRenderTargetEndingAccess()
177 wgpu::StoreOp storeOp, in SetRenderTargetEndingAccessResolve()
193 wgpu::StoreOp storeOp, in SetDepthAccess()
207 wgpu::StoreOp storeOp, in SetStencilAccess()
DRenderPassBuilderD3D12.h57 wgpu::StoreOp storeOp,
66 void SetRenderTargetEndingAccess(ColorAttachmentIndex attachment, wgpu::StoreOp storeOp);
68 wgpu::StoreOp storeOp,
72 wgpu::StoreOp storeOp,
/third_party/skia/experimental/graphite/src/
DDrawPass.h46 std::pair<LoadOp, StoreOp>,
54 std::pair<LoadOp, StoreOp> ops() const { return fOps; } in ops()
80 std::pair<LoadOp, StoreOp> ops,
87 std::pair<LoadOp, StoreOp> fOps;
DDrawTypes.h93 enum class StoreOp : uint8_t { enum
99 inline static constexpr int kStoreOpCount = (int)(StoreOp::kLast) + 1;
DDrawContext.h106 StoreOp fPendingStoreOp = StoreOp::kStore;
DDrawPass.cpp143 std::pair<LoadOp, StoreOp> ops, std::array<float, 4> clearColor, in DrawPass()
157 std::pair<LoadOp, StoreOp> ops, in Make()
DCommandBuffer.cpp34 if (colorInfo.fStoreOp == StoreOp::kStore) { in beginRenderPass()
DDrawContext.cpp102 fPendingStoreOp = StoreOp::kStore; in snapDrawPass()
DCommandBuffer.h29 StoreOp fStoreOp;
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
DRenderPassDescriptorValidationTests.cpp111 colorAttachments[i].storeOp = wgpu::StoreOp::Store; in TEST_F()
236 renderPass.cDepthStencilAttachmentInfo.stencilStoreOp = wgpu::StoreOp::Store; in TEST_F()
237 renderPass.cDepthStencilAttachmentInfo.depthStoreOp = wgpu::StoreOp::Store; in TEST_F()
244 renderPass.cDepthStencilAttachmentInfo.stencilStoreOp = wgpu::StoreOp::Discard; in TEST_F()
245 renderPass.cDepthStencilAttachmentInfo.depthStoreOp = wgpu::StoreOp::Discard; in TEST_F()
252 renderPass.cDepthStencilAttachmentInfo.stencilStoreOp = wgpu::StoreOp::Store; in TEST_F()
253 renderPass.cDepthStencilAttachmentInfo.depthStoreOp = wgpu::StoreOp::Discard; in TEST_F()
813 renderPass.cDepthStencilAttachmentInfo.depthStoreOp = wgpu::StoreOp::Store; in TEST_F()
816 renderPass.cDepthStencilAttachmentInfo.stencilStoreOp = wgpu::StoreOp::Store; in TEST_F()
826 renderPass.cDepthStencilAttachmentInfo.depthStoreOp = wgpu::StoreOp::Store; in TEST_F()
[all …]
DPipelineAndPassCompatibilityTests.cpp69 passDescriptor.cDepthStencilAttachmentInfo.depthStoreOp = wgpu::StoreOp::Store; in CreateRenderPassDescriptor()
75 passDescriptor.cDepthStencilAttachmentInfo.stencilStoreOp = wgpu::StoreOp::Store; in CreateRenderPassDescriptor()
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/
DCommands.h68 dawn::StoreOp storeOp;
75 dawn::StoreOp depthStoreOp;
77 dawn::StoreOp stencilStoreOp;
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DCommandBuffer.cpp134 case wgpu::StoreOp::Store: in LazyClearRenderPassAttachments()
138 case wgpu::StoreOp::Discard: in LazyClearRenderPassAttachments()
172 attachmentInfo.depthStoreOp == wgpu::StoreOp::Store, depthRange); in LazyClearRenderPassAttachments()
175 attachmentInfo.stencilStoreOp == wgpu::StoreOp::Store, stencilRange); in LazyClearRenderPassAttachments()
DCommands.h82 wgpu::StoreOp storeOp;
89 wgpu::StoreOp depthStoreOp;
91 wgpu::StoreOp stencilStoreOp;
/third_party/skia/src/gpu/dawn/
DGrDawnOpsRenderPass.cpp69 colorAttachment.storeOp = wgpu::StoreOp::Store; in beginRenderPass()
81 depthStencilAttachment.depthStoreOp = wgpu::StoreOp::Store; in beginRenderPass()
82 depthStencilAttachment.stencilStoreOp = wgpu::StoreOp::Store; in beginRenderPass()
/third_party/flutter/skia/third_party/externals/dawn/src/utils/
DDawnHelpers.cpp135 mColorAttachmentsInfo[i].storeOp = dawn::StoreOp::Store; in ComboRenderPassDescriptor()
143 cDepthStencilAttachmentInfo.depthStoreOp = dawn::StoreOp::Store; in ComboRenderPassDescriptor()
145 cDepthStencilAttachmentInfo.stencilStoreOp = dawn::StoreOp::Store; in ComboRenderPassDescriptor()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVInstrInfoA.td64 multiclass AtomicStPat<PatFrag StoreOp, RVInst Inst, RegisterClass StTy> {
65 def : Pat<(StoreOp GPR:$rs1, StTy:$rs2), (Inst StTy:$rs2, GPR:$rs1, 0)>;
66 def : Pat<(StoreOp AddrFI:$rs1, StTy:$rs2), (Inst StTy:$rs2, AddrFI:$rs1, 0)>;
67 def : Pat<(StoreOp (add GPR:$rs1, simm12:$imm12), StTy:$rs2),
69 def : Pat<(StoreOp (add AddrFI:$rs1, simm12:$imm12), StTy:$rs2),
71 def : Pat<(StoreOp (IsOrAdd AddrFI:$rs1, simm12:$imm12), StTy:$rs2),
/third_party/skia/third_party/externals/dawn/src/utils/
DWGPUHelpers.cpp91 cColorAttachments[i].storeOp = wgpu::StoreOp::Store; in ComboRenderPassDescriptor()
98 cDepthStencilAttachmentInfo.depthStoreOp = wgpu::StoreOp::Store; in ComboRenderPassDescriptor()
100 cDepthStencilAttachmentInfo.stencilStoreOp = wgpu::StoreOp::Store; in ComboRenderPassDescriptor()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DTextureZeroInitTests.cpp488 renderPassDescriptor.cDepthStencilAttachmentInfo.depthStoreOp = wgpu::StoreOp::Store; in TEST_P()
489 renderPassDescriptor.cDepthStencilAttachmentInfo.stencilStoreOp = wgpu::StoreOp::Store; in TEST_P()
530 renderPassDescriptor.cDepthStencilAttachmentInfo.depthStoreOp = wgpu::StoreOp::Store; in TEST_P()
531 renderPassDescriptor.cDepthStencilAttachmentInfo.stencilStoreOp = wgpu::StoreOp::Store; in TEST_P()
569 renderPassDescriptor.cDepthStencilAttachmentInfo.depthStoreOp = wgpu::StoreOp::Store; in TEST_P()
570 renderPassDescriptor.cDepthStencilAttachmentInfo.stencilStoreOp = wgpu::StoreOp::Store; in TEST_P()
610 renderPassDescriptor.cDepthStencilAttachmentInfo.depthStoreOp = wgpu::StoreOp::Discard; in TEST_P()
612 renderPassDescriptor.cDepthStencilAttachmentInfo.stencilStoreOp = wgpu::StoreOp::Store; in TEST_P()
685 renderPassDescriptor.cDepthStencilAttachmentInfo.depthStoreOp = wgpu::StoreOp::Store; in TEST_P()
687 wgpu::StoreOp::Discard; in TEST_P()
[all …]
DReadOnlyDepthStencilAttachmentTests.cpp159 passDescriptor.cDepthStencilAttachmentInfo.depthStoreOp = wgpu::StoreOp::Store; in DoTest()
162 passDescriptor.cDepthStencilAttachmentInfo.stencilStoreOp = wgpu::StoreOp::Store; in DoTest()
/third_party/flutter/skia/third_party/externals/dawn/src/tests/unittests/validation/
DValidationTest.cpp98 mColorAttachment.storeOp = dawn::StoreOp::Store; in DummyRenderPass()
/third_party/flutter/skia/src/gpu/dawn/
DGrDawnGpuCommandBuffer.cpp131 colorAttachment.storeOp = dawn::StoreOp::Store; in beginRenderPass()
143 depthStencilAttachment.depthStoreOp = dawn::StoreOp::Store; in beginRenderPass()
144 depthStencilAttachment.stencilStoreOp = dawn::StoreOp::Store; in beginRenderPass()

12