Searched refs:ext_prop (Results 1 - 4 of 4) sorted by relevance

/external/vulkan-validation-layers/loader/
H A Dwsi.h57 bool wsi_unsupported_instance_extension(const VkExtensionProperties *ext_prop);
H A Dloader.c896 // Search the given ext_list for a device extension matching the given ext_prop
897 bool has_vk_dev_ext_property(const VkExtensionProperties *ext_prop, const struct loader_device_extension_list *ext_list) { argument
899 if (compare_vk_extension_properties(&ext_list->list[i].props, ext_prop)) return true;
2386 VkExtensionProperties ext_prop; local
2675 strncpy(ext_prop.extensionName, name, sizeof(ext_prop.extensionName));
2676 ext_prop.extensionName[sizeof(ext_prop.extensionName) - 1] = '\0';
2680 ext_prop.specVersion = atoi(spec_version);
2682 ext_prop
[all...]
H A Dwsi.c118 bool wsi_unsupported_instance_extension(const VkExtensionProperties *ext_prop) { argument
120 if (!strcmp(ext_prop->extensionName, "VK_KHR_mir_surface")) return true;
123 if (!strcmp(ext_prop->extensionName, "VK_KHR_wayland_surface")) return true;
126 if (!strcmp(ext_prop->extensionName, "VK_KHR_xcb_surface")) return true;
129 if (!strcmp(ext_prop->extensionName, "VK_KHR_xlib_surface")) return true;
/external/vulkan-validation-layers/demos/
H A Dvulkaninfo.c2036 VkExtensionProperties const *ext_prop = &extension_properties[i]; local
2040 fprintf(out, "<div class='type'>%s</div>: extension revision <div class='val'>%d</div>", ext_prop->extensionName,
2041 ext_prop->specVersion);
2045 printf("%-36s: extension revision %2d\n", ext_prop->extensionName, ext_prop->specVersion);

Completed in 444 milliseconds