Lines Matching refs:imageNdx
976 for (size_t imageNdx = 0; imageNdx < swapchainImages.size(); ++imageNdx) in WsiTriangleRenderer() local
978 …m_attachmentViews[imageNdx] = ImageViewSp(new Unique<VkImageView>(createAttachmentView(vkd, devic… in WsiTriangleRenderer()
979 m_attachmentLayouts[imageNdx] = VK_IMAGE_LAYOUT_UNDEFINED; in WsiTriangleRenderer()
980 …framebuffers[imageNdx] = FramebufferSp(new Unique<VkFramebuffer>(createFramebuffer(vkd, device, *… in WsiTriangleRenderer()
1029 deUint32 imageNdx, in recordFrame() argument
1032 const VkFramebuffer curFramebuffer = **m_framebuffers[imageNdx]; in recordFrame()
1036 if (m_explicitLayoutTransitions || m_attachmentLayouts[imageNdx] == VK_IMAGE_LAYOUT_UNDEFINED) in recordFrame()
1045 …geMemoryBarrier(srcMask, dstMask, m_attachmentLayouts[imageNdx], newLayout, m_aliasImages[imageNdx… in recordFrame()
1048 m_attachmentLayouts[imageNdx] = newLayout; in recordFrame()
1068 m_attachmentLayouts[imageNdx], VK_IMAGE_LAYOUT_PRESENT_SRC_KHR, in recordFrame()
1069 m_aliasImages[imageNdx], range); in recordFrame()
1071 m_attachmentLayouts[imageNdx] = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR; in recordFrame()
1081 deUint32 imageNdx, in recordDeviceGroupFrame() argument
1084 const VkFramebuffer curFramebuffer = **m_framebuffers[imageNdx]; in recordDeviceGroupFrame()
1088 if (m_explicitLayoutTransitions || m_attachmentLayouts[imageNdx] == VK_IMAGE_LAYOUT_UNDEFINED) in recordDeviceGroupFrame()
1097 …geMemoryBarrier(srcMask, dstMask, m_attachmentLayouts[imageNdx], newLayout, m_aliasImages[imageNdx… in recordDeviceGroupFrame()
1100 m_attachmentLayouts[imageNdx] = newLayout; in recordDeviceGroupFrame()
1167 m_attachmentLayouts[imageNdx], VK_IMAGE_LAYOUT_PRESENT_SRC_KHR, in recordDeviceGroupFrame()
1168 m_aliasImages[imageNdx], range); in recordDeviceGroupFrame()
1170 m_attachmentLayouts[imageNdx] = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR; in recordDeviceGroupFrame()