Home
last modified time | relevance | path

Searched refs:fCommands (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/tools/sk_app/
DCommandSet.cpp39 for (Command& cmd : fCommands) { in onKey()
51 for (Command& cmd : fCommands) { in onChar()
62 for (const Command& cmd : fCommands) { in onSoftkey()
73 fCommands.push_back(Command(c, group, description, function)); in addCommand()
78 fCommands.push_back(Command(k, keyName, group, description, function)); in addCommand()
101 std::stable_sort(fCommands.begin(), fCommands.end(), in drawHelp()
127 for (Command& cmd : fCommands) { in drawHelp()
142 for (Command& cmd : fCommands) { in drawHelp()
162 for(const Command& command : fCommands) { in getCommandsAsSoftkeys()
DCommandSet.h111 SkTArray<Command> fCommands; variable
/third_party/skia/tools/viewer/
DViewer.cpp414 fCommands.attach(fWindow);
420 fCommands.addCommand(' ', "GUI", "Toggle Debug GUI", [this]() { in __anon2e493c4a0102()
425 fCommands.addCommand('/', "GUI", "Jump to slide picker", [this]() { in __anon2e493c4a0202()
431 fCommands.addCommand(skui::Key::kBack, "Backspace", "GUI", "Jump to slide picker", [this]() { in __anon2e493c4a0302()
436 fCommands.addCommand('g', "GUI", "Toggle GUI Demo", [this]() { in __anon2e493c4a0402()
440 fCommands.addCommand('z', "GUI", "Toggle zoom window", [this]() { in __anon2e493c4a0502()
444 fCommands.addCommand('Z', "GUI", "Toggle zoom window state", [this]() { in __anon2e493c4a0602()
448 fCommands.addCommand('v', "Swapchain", "Toggle vsync on/off", [this]() { in __anon2e493c4a0702()
455 fCommands.addCommand('V', "Swapchain", "Toggle delayed acquire on/off (Metal only)", [this]() { in __anon2e493c4a0802()
462 fCommands.addCommand('r', "Redraw", "Toggle redraw", [this]() { in __anon2e493c4a0902()
[all …]
DViewer.h211 sk_app::CommandSet fCommands; variable