Lines Matching full:ext_props
554 VkExtensionProperties *ext_props;
574 ext_props = loader_stack_alloc(count * sizeof(VkExtensionProperties));
576 res = fp_get_props(NULL, &count, ext_props);
587 VK_MAJOR(ext_props[i].specVersion),
588 VK_MINOR(ext_props[i].specVersion),
589 VK_PATCH(ext_props[i].specVersion));
592 ext_props[i].extensionName, lib_name, spec_version);
593 loader_add_to_ext_list(inst, ext_list, 1, &ext_props[i]);
601 * The extension properties are passed as inputs in count and ext_props.
606 uint32_t count, VkExtensionProperties *ext_props,
620 VK_MAJOR(ext_props[i].specVersion),
621 VK_MINOR(ext_props[i].specVersion),
622 VK_PATCH(ext_props[i].specVersion));
625 ext_props[i].extensionName,
627 res = loader_add_to_ext_list(inst, ext_list, 1, &ext_props[i]);
642 VkExtensionProperties *ext_props;
647 ext_props = loader_stack_alloc(count * sizeof(VkExtensionProperties));
648 if (!ext_props)
651 &count, ext_props);
658 VK_MAJOR(ext_props[i].specVersion),
659 VK_MINOR(ext_props[i].specVersion),
660 VK_PATCH(ext_props[i].specVersion));
663 ext_props[i].extensionName, lib_name, spec_version);
664 res = loader_add_to_ext_list(inst, ext_list, 1, &ext_props[i]);