digraph import { rankdir=LR pipeline_inputs [shape=record, label="Pipeline Inputs|Mesh"]; pipeline_output [shape=record, label="Pipeline Output|Inferred"]; mesh_index [shape=record, label="Index Mesh Vertices|{in: Mesh|out: Mesh}"]; vertex_cache_opt [shape=record, label="Vertex Cache Optimization|{in: Mesh|out: Mesh}"]; overdraw_optimization [shape=record, label="Overdraw Optimization|{in: Mesh|out: Mesh}"]; vertex_quantization [shape=record, label="Vertex Quantization|{in: Mesh|out: Mesh}"]; pipeline_inputs:out -> mesh_index:in mesh_index:out -> vertex_cache_opt:in vertex_cache_opt:out -> overdraw_optimization:in overdraw_optimization:out -> vertex_quantization:in vertex_quantization:out -> pipeline_output:in }