• Home
  • Raw
  • Download

Lines Matching refs:imageNdx

815 	for (size_t imageNdx = 0; imageNdx < swapchainImages.size(); ++imageNdx)  in WsiTriangleRenderer()  local
817 …m_attachmentViews[imageNdx] = ImageViewSp(new Unique<VkImageView>(createAttachmentView(vkd, devic… in WsiTriangleRenderer()
818 m_attachmentLayouts[imageNdx] = VK_IMAGE_LAYOUT_UNDEFINED; in WsiTriangleRenderer()
819 …framebuffers[imageNdx] = FramebufferSp(new Unique<VkFramebuffer>(createFramebuffer(vkd, device, *… in WsiTriangleRenderer()
868 deUint32 imageNdx, in recordFrame() argument
871 const VkFramebuffer curFramebuffer = **m_framebuffers[imageNdx]; in recordFrame()
875 if (m_explicitLayoutTransitions || m_attachmentLayouts[imageNdx] == VK_IMAGE_LAYOUT_UNDEFINED) in recordFrame()
884 …geMemoryBarrier(srcMask, dstMask, m_attachmentLayouts[imageNdx], newLayout, m_aliasImages[imageNdx in recordFrame()
887 m_attachmentLayouts[imageNdx] = newLayout; in recordFrame()
907 m_attachmentLayouts[imageNdx], VK_IMAGE_LAYOUT_PRESENT_SRC_KHR, in recordFrame()
908 m_aliasImages[imageNdx], range); in recordFrame()
910 m_attachmentLayouts[imageNdx] = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR; in recordFrame()
920 deUint32 imageNdx, in recordDeviceGroupFrame() argument
923 const VkFramebuffer curFramebuffer = **m_framebuffers[imageNdx]; in recordDeviceGroupFrame()
927 if (m_explicitLayoutTransitions || m_attachmentLayouts[imageNdx] == VK_IMAGE_LAYOUT_UNDEFINED) in recordDeviceGroupFrame()
936 …geMemoryBarrier(srcMask, dstMask, m_attachmentLayouts[imageNdx], newLayout, m_aliasImages[imageNdx in recordDeviceGroupFrame()
939 m_attachmentLayouts[imageNdx] = newLayout; in recordDeviceGroupFrame()
1006 m_attachmentLayouts[imageNdx], VK_IMAGE_LAYOUT_PRESENT_SRC_KHR, in recordDeviceGroupFrame()
1007 m_aliasImages[imageNdx], range); in recordDeviceGroupFrame()
1009 m_attachmentLayouts[imageNdx] = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR; in recordDeviceGroupFrame()