Searched refs:props2 (Results 1 - 6 of 6) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/vulkan/util/
H A Dvk_physical_device.c120 VkPhysicalDeviceProperties2 props2; local in function:vk_common_GetPhysicalDeviceProperties
121 props2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
122 props2.pNext = NULL;
125 &props2);
126 *pProperties = props2.properties;
136 VkPhysicalDeviceMemoryProperties2 props2; local in function:vk_common_GetPhysicalDeviceMemoryProperties
137 props2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2;
138 props2.pNext = NULL;
141 &props2);
146 pMemoryProperties->memoryHeapCount = props2
167 VkFormatProperties2 props2; local in function:vk_common_GetPhysicalDeviceFormatProperties
197 VkImageFormatProperties2 props2; local in function:vk_common_GetPhysicalDeviceImageFormatProperties
[all...]
/xsrc/external/mit/MesaLib/dist/src/freedreno/vulkan/
H A Dtu_legacy.c24 VkQueueFamilyProperties2 props2[*count]; local in function:tu_GetPhysicalDeviceQueueFamilyProperties
26 props2[i].sType = VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2;
27 props2[i].pNext = NULL;
29 tu_GetPhysicalDeviceQueueFamilyProperties2(pdev, count, props2);
31 props[i] = props2[i].queueFamilyProperties;
56 VkSparseImageFormatProperties2 props2[*count]; local in function:tu_GetPhysicalDeviceSparseImageFormatProperties
58 props2[i].sType = VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2;
59 props2[i].pNext = NULL;
61 tu_GetPhysicalDeviceSparseImageFormatProperties2(pdev, &info, count, props2);
63 props[i] = props2[
[all...]
H A Dtu_device.c1174 VkPhysicalDeviceMemoryProperties2 *props2)
1178 VkPhysicalDeviceMemoryProperties *props = &props2->memoryProperties;
1190 vk_foreach_struct(ext, props2->pNext)
1173 tu_GetPhysicalDeviceMemoryProperties2(VkPhysicalDevice pdev,VkPhysicalDeviceMemoryProperties2 * props2) argument
/xsrc/external/mit/MesaLib.old/dist/src/vulkan/wsi/
H A Dwsi_common_display.c435 VkDisplayProperties2KHR *props2 = local in function:wsi_display_get_physical_device_display_properties
436 vk_zalloc(wsi->alloc, sizeof(*props2) * *property_count, 8,
438 if (props2 == NULL)
442 props2[i].sType = VK_STRUCTURE_TYPE_DISPLAY_PROPERTIES_2_KHR;
445 physical_device, wsi_device, property_count, props2);
449 properties[i] = props2[i].displayProperties;
452 vk_free(wsi->alloc, props2);
/xsrc/external/mit/MesaLib/dist/src/vulkan/wsi/
H A Dwsi_common_display.c439 VkDisplayProperties2KHR *props2 = local in function:wsi_GetPhysicalDeviceDisplayPropertiesKHR
440 vk_zalloc(wsi->alloc, sizeof(*props2) * *pPropertyCount, 8,
442 if (props2 == NULL)
446 props2[i].sType = VK_STRUCTURE_TYPE_DISPLAY_PROPERTIES_2_KHR;
450 pPropertyCount, props2);
454 pProperties[i] = props2[i].displayProperties;
457 vk_free(wsi->alloc, props2);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/
H A Dzink_resource.c184 VkImageFormatProperties2 props2; local in function:check_ici
185 props2.sType = VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2;
186 props2.pNext = NULL;
206 ret = VKSCR(GetPhysicalDeviceImageFormatProperties2)(screen->pdev, &info, &props2);
207 image_props = props2.imageFormatProperties;

Completed in 14 milliseconds