Lines Matching refs:info
32 GrVkImageInfo info;
33 REPORTER_ASSERT(reporter, backendTex.getVkImageInfo(&info));
34 VkImageLayout initLayout = info.fImageLayout;
35 uint32_t initQueue = info.fCurrentQueueFamily;
41 REPORTER_ASSERT(reporter, backendTexCopy.getVkImageInfo(&info));
42 REPORTER_ASSERT(reporter, initLayout == info.fImageLayout);
43 REPORTER_ASSERT(reporter, initQueue == info.fCurrentQueueFamily);
49 REPORTER_ASSERT(reporter, backendTex.getVkImageInfo(&info));
50 REPORTER_ASSERT(reporter, VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL == info.fImageLayout);
51 REPORTER_ASSERT(reporter, VK_QUEUE_FAMILY_IGNORED == info.fCurrentQueueFamily);
53 REPORTER_ASSERT(reporter, backendTexCopy.getVkImageInfo(&info));
54 REPORTER_ASSERT(reporter, VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL == info.fImageLayout);
55 REPORTER_ASSERT(reporter, VK_QUEUE_FAMILY_IGNORED == info.fCurrentQueueFamily);
78 REPORTER_ASSERT(reporter, backendTex.getVkImageInfo(&info));
79 REPORTER_ASSERT(reporter, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL == info.fImageLayout);
80 REPORTER_ASSERT(reporter, initQueue == info.fCurrentQueueFamily);
83 REPORTER_ASSERT(reporter, backendTexImage.getVkImageInfo(&info));
84 REPORTER_ASSERT(reporter, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL == info.fImageLayout);
85 REPORTER_ASSERT(reporter, initQueue == info.fCurrentQueueFamily);
91 REPORTER_ASSERT(reporter, VK_QUEUE_FAMILY_IGNORED == info.fCurrentQueueFamily);
96 REPORTER_ASSERT(reporter, backendTex.getVkImageInfo(&info));
97 REPORTER_ASSERT(reporter, initLayout == info.fImageLayout);
98 REPORTER_ASSERT(reporter, initQueue == info.fCurrentQueueFamily);
100 REPORTER_ASSERT(reporter, backendTexCopy.getVkImageInfo(&info));
101 REPORTER_ASSERT(reporter, initLayout == info.fImageLayout);
102 REPORTER_ASSERT(reporter, initQueue == info.fCurrentQueueFamily);
104 REPORTER_ASSERT(reporter, backendTexImage.getVkImageInfo(&info));
105 REPORTER_ASSERT(reporter, initLayout == info.fImageLayout);
106 REPORTER_ASSERT(reporter, initQueue == info.fCurrentQueueFamily);
116 REPORTER_ASSERT(reporter, backendTex.getVkImageInfo(&info));
117 REPORTER_ASSERT(reporter, VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL == info.fImageLayout);
118 REPORTER_ASSERT(reporter, gpu->queueIndex() == info.fCurrentQueueFamily);
128 REPORTER_ASSERT(reporter, backendTex.getVkImageInfo(&info));
129 REPORTER_ASSERT(reporter, VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL == info.fImageLayout);
130 REPORTER_ASSERT(reporter, gpu->queueIndex() == info.fCurrentQueueFamily);
146 REPORTER_ASSERT(reporter, backendTex.getVkImageInfo(&info));
147 REPORTER_ASSERT(reporter, VK_IMAGE_LAYOUT_GENERAL == info.fImageLayout);
148 REPORTER_ASSERT(reporter, VK_QUEUE_FAMILY_EXTERNAL == info.fCurrentQueueFamily);
163 REPORTER_ASSERT(reporter, backendTex.getVkImageInfo(&info));
164 REPORTER_ASSERT(reporter, VK_IMAGE_LAYOUT_GENERAL == info.fImageLayout);
165 REPORTER_ASSERT(reporter, gpu->queueIndex() == info.fCurrentQueueFamily);