/external/vulkan-validation-layers/scripts/ |
D | layer_chassis_generator.py | 1404 def appendSection(self, section, text): member in LayerChassisOutputGenerator 1423 self.appendSection('struct', body) 1462 self.appendSection('command', '') 1463 self.appendSection('command', self.makeCDecls(cmdinfo.elem)[0]) 1490 self.appendSection('command', '') 1491 self.appendSection('command', '%s {' % decls[0][:-1]) 1502 …self.appendSection('command', ' auto layer_data = GetLayerDataPtr(get_dispatch_key(%s), layer_d… 1523 self.appendSection('command', ' bool skip = false;') 1526 self.appendSection('command', ' %s' % self.precallvalidate_loop) 1527 self.appendSection('command', ' auto lock = intercept->write_lock();') [all …]
|
D | thread_safety_generator.py | 851 self.appendSection('command', '\n#ifdef %s' % self.featureExtraProtect) 858 self.appendSection('command', '#endif // %s' % self.featureExtraProtect) 863 def appendSection(self, section, text): member in ThreadOutputGenerator 890 self.appendSection('struct', body) 920 self.appendSection('command', '// TODO - not wrapping EXT function ' + name) 946 self.appendSection('command', '') 947 self.appendSection('command', pre_decl) 948 … self.appendSection('command', " " + "\n ".join(str(startthreadsafety).rstrip().split("\n"))) 949 self.appendSection('command', '}') 955 self.appendSection('command', '') [all …]
|
D | layer_chassis_dispatch_generator.py | 1076 self.appendSection('header_file', self.inline_copyright_message) 1081 self.appendSection('header_file', '#pragma once') 1082 self.appendSection('header_file', '') 1083 self.appendSection('header_file', '#if defined(LAYER_CHASSIS_CAN_WRAP_HANDLES)') 1084 self.appendSection('header_file', 'extern bool wrap_handles;') 1085 self.appendSection('header_file', '#else') 1086 self.appendSection('header_file', 'extern const bool wrap_handles;') 1087 self.appendSection('header_file', '#endif') 1159 def appendSection(self, section, text): member in LayerChassisDispatchOutputGenerator 1750 …self.appendSection('header_file', self.GenDispatchFunctionPrototype(cmdinfo, feature_extra_protect… [all …]
|
D | object_tracker_generator.py | 485 def appendSection(self, section, text): member in ObjectTrackerOutputGenerator 919 self.appendSection('command', '') 920 self.appendSection('command', '#ifdef '+ feature_extra_protect) 944 self.appendSection('command', pre_cv_func_decl) 949 self.appendSection('command', pre_cr_func_decl) 956 self.appendSection('command', post_cr_func_decl) 962 self.appendSection('command', '') 963 self.appendSection('command', pre_cv_func_decl) 964 self.appendSection('command', ' bool skip = false;') 965 self.appendSection('command', pre_call_validate) [all …]
|
/external/vulkan-headers/registry/ |
D | cgenerator.py | 220 def appendSection(self, section, text): member in COutputGenerator 264 self.appendSection(section, body) 293 self.appendSection('struct', body) 392 self.appendSection(section, body) 401 self.appendSection('enum', body) 415 self.appendSection('command', prefix + decls[0] + '\n') 417 self.appendSection('commandPointer', decls[1])
|