# dot
```dot
digraph FrameGraph {
graph [style=invis, rankdir=TB ordering=out, splines=spline]
node [shape=record, fontname=helvetica, fontsize=10, margin="0.2,0.03"]
P0[label=<{ {Pass1} | {Refs: 1
Index: 0} }> style="rounded,filled", fillcolor=orange]
subgraph cluster_P0 { P0 R0_1 }
P1[label=<{ {Pass2} | {★ Refs: 1
Index: 1} }> style="rounded,filled", fillcolor=orange]
R0_1[label=<{ {foo
texture} | {Index: 0
Refs : 2} }> style="rounded,filled", fillcolor=skyblue]
R0_2[label=<{ {foo v2
texture} | {Index: 0
Refs : 0} }> style="rounded,filled", fillcolor=skyblue]
P0->{ R0_1 } [color=orangered]
P1->{ R0_2 } [color=orangered]
R0_1->{ P1 } [color=yellowgreen]
}
```