sculpt: omit the sculpt helpers from the graph

The runtime view, launcher query, and depot query increase the
complexity of the graph without providing a tangible value to the user.
This patch omits those components from the runtime view to make the
graph less confusing.
This commit is contained in:
Norman Feske 2019-02-22 17:21:38 +01:00 committed by Christian Helmuth
parent e9f40e9d68
commit 010caa6236
1 changed files with 7 additions and 0 deletions

View File

@ -168,6 +168,13 @@ struct Sculpt::Graph
Start_name const name = start.attribute_value("name", Start_name());
/* omit sculpt's helpers from the graph */
bool const blacklisted = (name == "runtime_view"
|| name == "launcher_query"
|| name == "depot_query");
if (blacklisted)
return;
Runtime_state::Info const info = _runtime_state.info(name);
gen_named_node(xml, "frame", name, [&] () {