commit fff7a7228477487b1d7dcf5c5c31920be502b162 parent baff802dc413b59b41d5f62a166c95e71e1c964e Author: Martin Kloeckner <mjkloeckner@gmail.com> Date: Wed, 12 Jun 2024 13:36:09 -0300 add dot file of graphics-pipeline graph Diffstat:
A | guias/graphics-pipeline.gv | | | 22 | ++++++++++++++++++++++ |
1 file changed, 22 insertions(+), 0 deletions(-) diff --git a/guias/graphics-pipeline.gv b/guias/graphics-pipeline.gv @@ -0,0 +1,22 @@ +// https://graphviz.org/doc/infor/shapes.html + +digraph G { + rankdir=LR + node [ shape=box ]; + compound=true; + + subgraph cluster_pipeline { + node [ shape=box, style=filled, fillcolor=white ]; + B [ label="Vertex Shader" ]; + C [ label="Rasterizador" ]; + D [ label="Fragment Shader" ]; + label="Pipeline Grafico"; + // bgcolor="#DD2D4A"; + graph [style=dashed]; + } + + A [ label="Datos de Escena", color=transparent ]; + E [ label="Framebuffer", color=transparent ]; + + A-> B -> C -> D -> E; +}