Lines Matching refs:pAttachments
153 &defaultColorBlendAttachmentState, // const VkPipelineColorBlendAttachmentState* pAttachments
525 m_attachments[i].flags = pCreateInfo->pAttachments[i].flags;
526 m_attachments[i].format = pCreateInfo->pAttachments[i].format;
527 m_attachments[i].samples = pCreateInfo->pAttachments[i].samples;
528 m_attachments[i].loadOp = pCreateInfo->pAttachments[i].loadOp;
529 m_attachments[i].storeOp = pCreateInfo->pAttachments[i].storeOp;
530 m_attachments[i].stencilLoadOp = pCreateInfo->pAttachments[i].stencilLoadOp;
531 m_attachments[i].stencilStoreOp = pCreateInfo->pAttachments[i].stencilStoreOp;
532 m_attachments[i].initialLayout = pCreateInfo->pAttachments[i].initialLayout;
533 m_attachments[i].finalLayout = pCreateInfo->pAttachments[i].finalLayout;
534 m_layouts[i] = pCreateInfo->pAttachments[i].initialLayout;
552 subpass.m_colorAttachments[i].format = pCreateInfo->pAttachments[j].format;
559 subpass.m_colorAttachments[i].attachmentInfo.loadOp = pCreateInfo->pAttachments[j].loadOp;
560 subpass.m_colorAttachments[i].attachmentInfo.storeOp = pCreateInfo->pAttachments[j].storeOp;
576 subpass.m_depthStencilAttachment.format = pCreateInfo->pAttachments[j].format;
583 subpass.m_depthStencilAttachment.attachmentInfo.loadOp = pCreateInfo->pAttachments[j].loadOp;
584 subpass.m_depthStencilAttachment.attachmentInfo.storeOp = pCreateInfo->pAttachments[j].storeOp;
586 subpass.m_depthStencilAttachment.stencilLoadOp = pCreateInfo->pAttachments[j].stencilLoadOp;
587 subpass.m_depthStencilAttachment.stencilStoreOp = pCreateInfo->pAttachments[j].stencilStoreOp;
605 subpass.m_resolveAttachments[i].format = pCreateInfo->pAttachments[j].format;
612 subpass.m_resolveAttachments[i].attachmentInfo.loadOp = pCreateInfo->pAttachments[j].loadOp;
613 subpass.m_resolveAttachments[i].attachmentInfo.storeOp = pCreateInfo->pAttachments[j].storeOp;
657 m_attachments[i] = pCreateInfo->pAttachments[i];
658 m_layouts[i] = pCreateInfo->pAttachments[i].initialLayout;
691 subpass.m_colorAttachments[i].format = pCreateInfo->pAttachments[j].format;
698 subpass.m_colorAttachments[i].attachmentInfo.loadOp = pCreateInfo->pAttachments[j].loadOp;
699 subpass.m_colorAttachments[i].attachmentInfo.storeOp = pCreateInfo->pAttachments[j].storeOp;
715 subpass.m_depthStencilAttachment.format = pCreateInfo->pAttachments[j].format;
722 subpass.m_depthStencilAttachment.attachmentInfo.loadOp = pCreateInfo->pAttachments[j].loadOp;
723 subpass.m_depthStencilAttachment.attachmentInfo.storeOp = pCreateInfo->pAttachments[j].storeOp;
725 subpass.m_depthStencilAttachment.stencilLoadOp = pCreateInfo->pAttachments[j].stencilLoadOp;
726 subpass.m_depthStencilAttachment.stencilStoreOp = pCreateInfo->pAttachments[j].stencilStoreOp;
744 subpass.m_resolveAttachments[i].format = pCreateInfo->pAttachments[j].format;
751 subpass.m_resolveAttachments[i].attachmentInfo.loadOp = pCreateInfo->pAttachments[j].loadOp;
752 subpass.m_resolveAttachments[i].attachmentInfo.storeOp = pCreateInfo->pAttachments[j].storeOp;
1548 m_imageViews[i] = pCreateInfo->pAttachments[i];
1555 subpass.m_colorAttachments[i].attachmentInfo.imageView = pCreateInfo->pAttachments[subpass.m_colorAttachments[i].index];
1561 subpass.m_depthStencilAttachment.attachmentInfo.imageView = pCreateInfo->pAttachments[subpass.m_depthStencilAttachment.index];
1567 subpass.m_resolveAttachments[i].attachmentInfo.imageView = pCreateInfo->pAttachments[subpass.m_resolveAttachments[i].index];
1590 m_imageViews.push_back(pCreateInfo->pAttachments[0]);
1597 if (pCreateInfo->pAttachments)
1600 subpass.m_colorAttachments[0].attachmentInfo.imageView = pCreateInfo->pAttachments[subpass.m_colorAttachments[0].index];
1602 subpass.m_depthStencilAttachment.attachmentInfo.imageView = pCreateInfo->pAttachments[subpass.m_depthStencilAttachment.index];
1618 createInfo.pAttachments = &colorAttachment;
1650 createInfo.pAttachments = attachmentsArray;
3626 if (pointerToCreateInfo->pColorBlendState->pAttachments)
3627 state->colorBlendAdvanced[i].advancedBlendOp = pointerToCreateInfo->pColorBlendState->pAttachments[i].colorBlendOp;
3639 if (pointerToCreateInfo->pColorBlendState->pAttachments)
3641 state->colorBlendEnables[i] = pointerToCreateInfo->pColorBlendState->pAttachments[i].blendEnable;
3642 state->blendEquations[i].srcColorBlendFactor = pointerToCreateInfo->pColorBlendState->pAttachments[i].srcColorBlendFactor;
3643 state->blendEquations[i].dstColorBlendFactor = pointerToCreateInfo->pColorBlendState->pAttachments[i].dstColorBlendFactor;
3644 state->blendEquations[i].colorBlendOp = pointerToCreateInfo->pColorBlendState->pAttachments[i].colorBlendOp;
3645 state->blendEquations[i].srcAlphaBlendFactor = pointerToCreateInfo->pColorBlendState->pAttachments[i].srcAlphaBlendFactor;
3646 state->blendEquations[i].dstAlphaBlendFactor = pointerToCreateInfo->pColorBlendState->pAttachments[i].dstAlphaBlendFactor;
3647 state->blendEquations[i].alphaBlendOp = pointerToCreateInfo->pColorBlendState->pAttachments[i].alphaBlendOp;
3648 state->colorWriteMasks[i] = pointerToCreateInfo->pColorBlendState->pAttachments[i].colorWriteMask;