Home
last modified time | relevance | path

Searched refs:fRenderPassDesc (Results 1 – 4 of 4) sorted by relevance

/external/skqp/src/gpu/mtl/
DGrMtlGpuCommandBuffer.mm28 , fRenderPassDesc(this->createRenderPassDesc()) { function
33 fRenderPassDesc.stencilAttachment.texture = stencil->stencilView();
40 fRenderPassDesc.colorAttachments[0].loadAction = MTLLoadActionLoad;
46 fRenderPassDesc.stencilAttachment.loadAction = MTLLoadActionLoad;
51 fRenderPassDesc.stencilAttachment.loadAction = MTLLoadActionClear;
54 fRenderPassDesc.stencilAttachment.loadAction = MTLLoadActionLoad;
57 fRenderPassDesc.stencilAttachment.loadAction = MTLLoadActionDontCare;
62 fRenderPassDesc.stencilAttachment.storeAction = MTLStoreActionStore;
65 fRenderPassDesc.stencilAttachment.storeAction = MTLStoreActionDontCare;
78 renderCommandEncoderWithDescriptor: fRenderPassDesc];
[all …]
DGrMtlGpuCommandBuffer.h131 MTLRenderPassDescriptor* fRenderPassDesc; variable
/external/skia/src/gpu/mtl/
DGrMtlOpsRenderPass.mm40 fGpu->commandBuffer()->getRenderCommandEncoder(fRenderPassDesc, nullptr, this);
92 fGpu->commandBuffer()->getRenderCommandEncoder(fRenderPassDesc, nullptr, this);
141 auto colorAttachment = fRenderPassDesc.colorAttachments[0];
147 fGpu->commandBuffer()->getRenderCommandEncoder(fRenderPassDesc, nullptr, this);
162 auto stencilAttachment = fRenderPassDesc.stencilAttachment;
173 fGpu->commandBuffer()->getRenderCommandEncoder(fRenderPassDesc, nullptr, this);
181 fGpu->commandBuffer()->getRenderCommandEncoder(fRenderPassDesc, nullptr, this);
220 fRenderPassDesc = [MTLRenderPassDescriptor new];
221 auto colorAttachment = fRenderPassDesc.colorAttachments[0];
231 auto mtlStencil = fRenderPassDesc.stencilAttachment;
DGrMtlOpsRenderPass.h74 MTLRenderPassDescriptor* fRenderPassDesc; variable