Lines Matching refs:imageLayout
441 vk::VkSubresourceLayout imageLayout;
442 deMemset(&imageLayout, 0, sizeof(imageLayout));
444 m_vk.getImageSubresourceLayout(m_device, object(), &imageSubResource, &imageLayout);
447 srcPtr += imageLayout.offset;
448 srcPtr += offset.z * imageLayout.depthPitch;
449 srcPtr += offset.y * imageLayout.rowPitch;
453 imageLayout.rowPitch, imageLayout.depthPitch, srcPtr, data);
788 vk::VkSubresourceLayout imageLayout;
793 &imageLayout);
796 destPtr += imageLayout.offset;
797 destPtr += offset.z * imageLayout.depthPitch;
798 destPtr += offset.y * imageLayout.rowPitch;
802 imageLayout.rowPitch, imageLayout.depthPitch, data, destPtr);