Lines Matching defs:layout
534 VkImageLayout layout,
542 if (layout == VK_IMAGE_LAYOUT_SUBPASS_SELF_DEPENDENCY_MESA)
549 switch (layout) {
788 VkSubresourceLayout *layout)
796 layout->offset = 0;
797 layout->rowPitch = image->linear.row_stride;
798 layout->depthPitch = 0;
799 layout->arrayPitch = 0;
800 layout->size = image->linear.size;
815 layout->offset = footprint.Offset;
816 layout->rowPitch = footprint.Footprint.RowPitch;
817 layout->depthPitch = layout->rowPitch * footprint.Footprint.Height;
818 layout->arrayPitch = layout->depthPitch; // uuuh... why is this even here?
819 layout->size = total_size;