Lines Matching refs:props2
123 VkPhysicalDeviceProperties2 props2;
124 props2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
125 props2.pNext = NULL;
128 &props2);
129 *pProperties = props2.properties;
146 STACK_ARRAY(VkQueueFamilyProperties2, props2, *pQueueFamilyPropertyCount);
149 props2[i].sType = VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2;
150 props2[i].pNext = NULL;
155 props2);
158 pQueueFamilyProperties[i] = props2[i].queueFamilyProperties;
160 STACK_ARRAY_FINISH(props2);
170 VkPhysicalDeviceMemoryProperties2 props2;
171 props2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2;
172 props2.pNext = NULL;
175 &props2);
176 *pMemoryProperties = props2.memoryProperties;
187 VkFormatProperties2 props2;
188 props2.sType = VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_2;
189 props2.pNext = NULL;
192 format, &props2);
193 *pFormatProperties = props2.formatProperties;
217 VkImageFormatProperties2 props2;
218 props2.sType = VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2;
219 props2.pNext = NULL;
223 &info, &props2);
224 *pImageFormatProperties = props2.imageFormatProperties;
258 STACK_ARRAY(VkSparseImageFormatProperties2, props2, *pNumProperties);
261 props2[i].sType = VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2;
262 props2[i].pNext = NULL;
268 props2);
271 pProperties[i] = props2[i].properties;
273 STACK_ARRAY_FINISH(props2);