Lines Matching refs:output_func
300 output_func = ''
301 …output_func += 'bool ObjectLifetimes::ReportUndestroyedObjects(VkDevice device, const std::string&…
302 output_func += ' bool skip = false;\n'
303 …output_func += ' skip |= DeviceReportUndestroyedObjects(device, kVulkanObjectTypeCommandBuffer,…
306 …output_func += ' skip |= DeviceReportUndestroyedObjects(device, %s, error_code);\n' % (self.Get…
307 output_func += ' return skip;\n'
308 output_func += '}\n'
309 return output_func
314 output_func = ''
315 output_func += 'void ObjectLifetimes::DestroyUndestroyedObjects(VkDevice device) {\n'
316 … output_func += ' DeviceDestroyUndestroyedObjects(device, kVulkanObjectTypeCommandBuffer);\n'
319 …output_func += ' DeviceDestroyUndestroyedObjects(device, %s);\n' % (self.GetVulkanObjType(handl…
320 output_func += '}\n'
321 return output_func