Home
last modified time | relevance | path

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

/external/skqp/src/gpu/vk/
DGrVkRenderPass.cpp55 uint32_t numAttachments = fAttachmentsDescriptor.fAttachmentCount; in init()
79 fAttachmentsDescriptor.fColor.fLoadStoreOps = colorOp; in init()
81 fAttachmentsDescriptor.fColor, in init()
102 fAttachmentsDescriptor.fStencil.fLoadStoreOps = stencilOp; in init()
104 fAttachmentsDescriptor.fStencil, in init()
152 fAttachmentsDescriptor = compatibleRenderPass.fAttachmentsDescriptor; in init()
162 target.getAttachmentsDescriptor(&fAttachmentsDescriptor, &fAttachmentFlags); in init()
202 if (!fAttachmentsDescriptor.fColor.isCompatible(desc.fColor)) { in isCompatible()
207 if (!fAttachmentsDescriptor.fStencil.isCompatible(desc.fStencil)) { in isCompatible()
226 return this->isCompatible(renderPass.fAttachmentsDescriptor, renderPass.fAttachmentFlags); in isCompatible()
[all …]
DGrVkRenderPass.h147 AttachmentsDescriptor fAttachmentsDescriptor; variable
/external/skia/src/gpu/vk/
DGrVkRenderPass.cpp75 AttachmentsDescriptor attachmentsDescriptor = compatibleRenderPass.fAttachmentsDescriptor; in Create()
327 , fAttachmentsDescriptor(descriptor) in GrVkRenderPass()
372 if (!fAttachmentsDescriptor.fColor.isCompatible(desc.fColor)) { in isCompatible()
377 if (!fAttachmentsDescriptor.fResolve.isCompatible(desc.fResolve)) { in isCompatible()
382 if (!fAttachmentsDescriptor.fStencil.isCompatible(desc.fStencil)) { in isCompatible()
413 return this->isCompatible(renderPass.fAttachmentsDescriptor, renderPass.fAttachmentFlags, in isCompatible()
427 if (fAttachmentsDescriptor.fColor.fLoadStoreOps != colorOps) { in equalLoadStoreOps()
432 if (fAttachmentsDescriptor.fResolve.fLoadStoreOps != resolveOps) { in equalLoadStoreOps()
437 if (fAttachmentsDescriptor.fStencil.fLoadStoreOps != stencilOps) { in equalLoadStoreOps()
445 GenKey(b, fAttachmentFlags, fAttachmentsDescriptor, fSelfDepFlags, in genKey()
DGrVkRenderPass.h189 AttachmentsDescriptor fAttachmentsDescriptor; variable