Searched refs:layer_property (Results 1 - 3 of 3) sorted by relevance
/third_party/vulkan-loader/loader/ |
H A D | settings.c | 619 // If layer_property is a regular layer, check if the lib_path is the same. 620 // If layer_property is a meta layer, just use the layerName 621 bool check_if_layer_is_in_list(struct loader_layer_list* layer_list, struct loader_layer_properties* layer_property) { in check_if_layer_is_in_list() argument 624 if (0 == strncmp(layer_list->list[i].info.layerName, layer_property->info.layerName, VK_MAX_EXTENSION_NAME_SIZE)) { in check_if_layer_is_in_list() 625 if (0 == (layer_property->type_flags & VK_LAYER_TYPE_FLAG_META_LAYER) && in check_if_layer_is_in_list() 626 strcmp(layer_list->list[i].lib_name, layer_property->lib_name) == 0) { in check_if_layer_is_in_list()
|
H A D | loader.h | 126 // This function takes ownership of layer_property in the case that allocation fails 128 struct loader_layer_properties *layer_property);
|
H A D | loader.c | 399 struct loader_layer_properties *layer_property) { in loader_append_layer_property() 421 memcpy(&layer_list->list[layer_list->count], layer_property, sizeof(struct loader_layer_properties)); in loader_append_layer_property() 423 memset(layer_property, 0, sizeof(struct loader_layer_properties)); in loader_append_layer_property() 426 loader_free_layer_properties(inst, layer_property); in loader_append_layer_property() 398 loader_append_layer_property(const struct loader_instance *inst, struct loader_layer_list *layer_list, struct loader_layer_properties *layer_property) loader_append_layer_property() argument
|
Completed in 11 milliseconds