Lines Matching defs:pRenderingInfo
3509 const VkRenderingInfo *pRenderingInfo)
3514 .left = pRenderingInfo->renderArea.offset.x,
3515 .top = pRenderingInfo->renderArea.offset.y,
3516 .right = (LONG)(pRenderingInfo->renderArea.offset.x + pRenderingInfo->renderArea.extent.width),
3517 .bottom = (LONG)(pRenderingInfo->renderArea.offset.y + pRenderingInfo->renderArea.extent.height),
3526 cmdbuf->state.render.flags = pRenderingInfo->flags;
3527 cmdbuf->state.render.layer_count = pRenderingInfo->layerCount;
3528 cmdbuf->state.render.view_mask = pRenderingInfo->viewMask;
3533 cmdbuf->state.render.attachments.color_count = pRenderingInfo->colorAttachmentCount;
3534 for (uint32_t i = 0; i < pRenderingInfo->colorAttachmentCount; i++) {
3535 const VkRenderingAttachmentInfo *att = &pRenderingInfo->pColorAttachments[i];
3558 if (pRenderingInfo->pDepthAttachment) {
3559 const VkRenderingAttachmentInfo *att = pRenderingInfo->pDepthAttachment;
3574 if (pRenderingInfo->pStencilAttachment) {
3575 const VkRenderingAttachmentInfo *att = pRenderingInfo->pStencilAttachment;
3590 if (pRenderingInfo->pDepthAttachment || pRenderingInfo->pStencilAttachment) {
3592 pRenderingInfo->pDepthAttachment ?
3593 dzn_image_view_from_handle(pRenderingInfo->pDepthAttachment->imageView) :
3596 pRenderingInfo->pStencilAttachment ?
3597 dzn_image_view_from_handle(pRenderingInfo->pStencilAttachment->imageView) :
3610 pRenderingInfo->colorAttachmentCount,
3611 pRenderingInfo->colorAttachmentCount ? rt_handles : NULL,
3614 for (uint32_t a = 0; a < pRenderingInfo->colorAttachmentCount; a++) {
3615 const VkRenderingAttachmentInfo *att = &pRenderingInfo->pColorAttachments[a];
3627 if (pRenderingInfo->pDepthAttachment || pRenderingInfo->pStencilAttachment) {
3628 const VkRenderingAttachmentInfo *z_att = pRenderingInfo->pDepthAttachment;
3629 const VkRenderingAttachmentInfo *s_att = pRenderingInfo->pStencilAttachment;