Searched refs:command_name (Results 1 – 4 of 4) sorted by relevance
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/gl/ |
D | generate_gl_dispatch_table.py | 300 command_name = command.attrib['name'] 301 safe_append(api_feature_info, command_name, (api, name, number)) 311 command_name = command.attrib['name'] 314 if '_KHR_' in extension_name and not command_name.endswith('KHR'): 315 safe_append(gl_extension_commands, command_name, extension_name) 316 safe_append(gles2_extension_commands, command_name, extension_name) 318 safe_append(both_extension_commands, command_name, extension_name) 320 safe_append(gl_extension_commands, command_name, extension_name) 322 safe_append(gles2_extension_commands, command_name, extension_name) 466 command_name = proto.find('name').text [all …]
|
/device/generic/vulkan-cereal/third-party/angle/scripts/ |
D | generate_entry_points.py | 1477 def is_get_pointer_command(command_name): argument 1478 return command_name.endswith('Pointerv') and command_name.startswith('glGet') 1481 def format_capture_replay_param_access(command_name, param_text_list, cmd_packed_gl_enums): argument 1483 cmd_packed_enums = get_packed_enums(cmd_packed_gl_enums, command_name) 1496 elif pointer_count == 1 or (pointer_count == 2 and is_get_pointer_command(command_name)): 1512 for command_name, cmd_param_texts in sorted(command_to_param_types_mapping.items()): 1513 entry_point_name = command_name[2:] # strip the 'gl' prefix 1519 command_name, cmd_param_texts, cmd_packed_gl_enums), 1531 command_name = command_node.find('proto').find('name').text 1532 if command_name not in all_commands_names: [all …]
|
/device/google/contexthub/util/nanotool/ |
D | nanotool.cpp | 63 static NanotoolCommand StrToCommand(const char *command_name) { in StrToCommand() argument 77 if (!command_name) { in StrToCommand() 86 if (name.compare(command_name) == 0) { in StrToCommand()
|
/device/generic/vulkan-cereal/protocols/vulkan/appendices/ |
D | boilerplate.txt | 97 VKAPI_ATTR <return_type> VKAPI_CALL <command_name>(<command_parameters>); 104 typedef <return_type> (VKAPI_PTR *PFN_<command_name>)(<command_parameters>);
|