From fdc99e5bf619daf46b9f3508827a79e329b0da9b Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Tue, 19 Nov 2019 11:39:49 +0100 Subject: Update `README` and `ROADMAP` and add `ECOSYSTEM` --- docs/graphs/wgpu.dot | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 docs/graphs/wgpu.dot (limited to 'docs/graphs/wgpu.dot') diff --git a/docs/graphs/wgpu.dot b/docs/graphs/wgpu.dot new file mode 100644 index 00000000..dc2d7cc8 --- /dev/null +++ b/docs/graphs/wgpu.dot @@ -0,0 +1,33 @@ +digraph G { + fontname = "Roboto"; + newrank=true; + node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + + subgraph cluster_1 { + label = "renderers "; + labelloc = "b"; + labeljust = "r"; + fontcolor = "#ffffff"; + color="#8797AF"; + bgcolor="#8797AF"; + style=rounded; + node [fillcolor=white, color=white, fontcolor=black]; + + etc_1 [label="...", style=empty, shape=none, fontcolor=white]; + iced_wgpu; + } + + subgraph cluster_3 { + style=invis; + margin=20; + iced; + } + + { rank = same; iced_wgpu etc_1 } + + iced_native -> iced_wgpu; + + iced_wgpu -> iced; + + iced [width=1, height=0.6, style="filled", fontcolor=white, color="#474973"]; +} -- cgit From cae26cb7bc627f4a5b3bcf1cd023a0c552e8c65e Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 20 Nov 2019 05:01:36 +0100 Subject: Remove high contrast from graphs --- docs/graphs/wgpu.dot | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'docs/graphs/wgpu.dot') diff --git a/docs/graphs/wgpu.dot b/docs/graphs/wgpu.dot index dc2d7cc8..410c2eeb 100644 --- a/docs/graphs/wgpu.dot +++ b/docs/graphs/wgpu.dot @@ -1,19 +1,19 @@ digraph G { fontname = "Roboto"; newrank=true; - node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"]; + edge[color="#333333"]; subgraph cluster_1 { label = "renderers "; labelloc = "b"; labeljust = "r"; - fontcolor = "#ffffff"; - color="#8797AF"; - bgcolor="#8797AF"; + fontcolor = "#0366d6"; + color="#f6f8fa"; + bgcolor="#f6f8fa"; style=rounded; - node [fillcolor=white, color=white, fontcolor=black]; - etc_1 [label="...", style=empty, shape=none, fontcolor=white]; + etc_1 [label="...", style=solid, shape=none]; iced_wgpu; } @@ -28,6 +28,4 @@ digraph G { iced_native -> iced_wgpu; iced_wgpu -> iced; - - iced [width=1, height=0.6, style="filled", fontcolor=white, color="#474973"]; } -- cgit