Lines Matching refs:base
35 struct vk_object_base *base,
38 base->_loader_data.loaderMagic = ICD_LOADER_MAGIC;
39 base->type = obj_type;
40 base->device = device;
41 base->client_visible = false;
42 base->object_name = NULL;
43 util_sparse_array_init(&base->private_data, sizeof(uint64_t), 8);
47 vk_object_base_finish(struct vk_object_base *base)
49 util_sparse_array_finish(&base->private_data);
51 if (base->object_name != NULL)
52 vk_free(&base->device->alloc, base->object_name);
140 vk_object_base_init(device, &slot->base,
158 vk_object_base_finish(&slot->base);