Searched refs:CommandSet (Results 1 - 9 of 9) sorted by relevance
/third_party/skia/tools/sk_app/ |
H A D | CommandSet.cpp | 8 #include "tools/sk_app/CommandSet.h" 15 CommandSet::CommandSet() in CommandSet() function in sk_app::CommandSet 33 void CommandSet::attach(Window* window) { in attach() 37 bool CommandSet::onKey(skui::Key key, skui::InputState state, skui::ModifierKey modifiers) { in onKey() 50 bool CommandSet::onChar(SkUnichar c, skui::ModifierKey modifiers) { in onChar() 61 bool CommandSet::onSoftkey(const SkString& softkey) { in onSoftkey() 71 void CommandSet::addCommand(SkUnichar c, const char* group, const char* description, in addCommand() 76 void CommandSet::addCommand(skui::Key k, const char* keyName, const char* group, in addCommand() 87 bool CommandSet [all...] |
H A D | CommandSet.h | 24 * An app can simply store an instance of CommandSet and then use it as follows: 32 * events to the CommandSet's onKey, onChar, and onSoftKey. 35 * The CommandSet always binds 'h' to cycle through two different help screens. The first shows 39 class CommandSet { class 41 CommandSet();
|
/third_party/backends/backend/genesys/ |
H A D | command_set.h | 37 class CommandSet class 40 virtual ~CommandSet() = default;
|
H A D | command_set_common.h | 31 class CommandSetCommon : public CommandSet
|
H A D | fwd.h | 30 class CommandSet;
|
H A D | low.cpp | 57 std::unique_ptr<CommandSet> create_cmd_set(AsicType asic_type) in create_cmd_set() 60 case AsicType::GL646: return std::unique_ptr<CommandSet>(new gl646::CommandSetGl646{}); in create_cmd_set() 61 case AsicType::GL841: return std::unique_ptr<CommandSet>(new gl841::CommandSetGl841{}); in create_cmd_set() 62 case AsicType::GL842: return std::unique_ptr<CommandSet>(new gl842::CommandSetGl842{}); in create_cmd_set() 63 case AsicType::GL843: return std::unique_ptr<CommandSet>(new gl843::CommandSetGl843{}); in create_cmd_set() 65 case AsicType::GL846: return std::unique_ptr<CommandSet>(new gl846::CommandSetGl846{}); in create_cmd_set() 66 case AsicType::GL847: return std::unique_ptr<CommandSet>(new gl847::CommandSetGl847{}); in create_cmd_set() 67 case AsicType::GL124: return std::unique_ptr<CommandSet>(new gl124::CommandSetGl124{}); in create_cmd_set()
|
H A D | device.h | 265 std::unique_ptr<CommandSet> cmd_set;
|
H A D | low.h | 191 std::unique_ptr<CommandSet> create_cmd_set(AsicType asic_type);
|
/third_party/skia/tools/viewer/ |
H A D | Viewer.h | 21 #include "tools/sk_app/CommandSet.h" 211 sk_app::CommandSet fCommands;
|
Completed in 11 milliseconds