Lines Matching defs:desc
19 const AttachmentDesc& desc,
23 attachment->format = desc.fFormat;
24 SkAssertResult(GrSampleCountToVkSampleCount(desc.fSamples, &attachment->samples));
29 attachment->loadOp = desc.fLoadStoreOps.fLoadOp;
30 attachment->storeOp = desc.fLoadStoreOps.fStoreOp;
37 attachment->stencilLoadOp = desc.fLoadStoreOps.fLoadOp;
38 attachment->stencilStoreOp = desc.fLoadStoreOps.fStoreOp;
370 bool GrVkRenderPass::isCompatible(const AttachmentsDescriptor& desc,
380 if (!fAttachmentsDescriptor.fColor.isCompatible(desc.fColor)) {
385 if (!fAttachmentsDescriptor.fResolve.isCompatible(desc.fResolve)) {
390 if (!fAttachmentsDescriptor.fStencil.isCompatible(desc.fStencil)) {
411 AttachmentsDescriptor desc;
413 target->getAttachmentsDescriptor(&desc, &flags, this->hasResolveAttachment(),
416 return this->isCompatible(desc, flags, selfDepFlags, loadFromResolve);