Home | History | Annotate | Download | only in vulkan-validation-layers

Lines Matching refs:obj_list

112 def gather_object_uses_in_struct(obj_list, struct_type):
123 if base_type in obj_list:
129 sub_uses = gather_object_uses_in_struct(obj_list, base_type)
135 # and return dict of params that use one of the obj_list types
139 def get_object_uses(obj_list, params):
153 if base_type in obj_list:
166 struct_uses = gather_object_uses_in_struct(obj_list, base_type)
753 def _gather_object_uses(self, obj_list, struct_type, obj_set):
755 # add objs in obj_list to obj_set
758 if vk_helper.struct_dict[struct_type][m]['type'] in obj_list:
761 obj_set = obj_set.union(self._gather_object_uses(obj_list, vk_helper.struct_dict[struct_type][m]['type'], obj_set))