Merge branch 'master' of https://scm.cri.ensmp.fr/git/Faustine
[Faustine.git] / interpretor / preprocessor / faust-0.9.47mr3 / documentation / faust-quick-reference-src / graphs / faustextended2.dot
1
2 strict digraph faustflow {
3 root=dsp;
4 dsp[label="fx.dsp"];
5 scalar[label="fx.cpp\nscalar"];
6 vector[label="fx.cpp\nvector"];
7 openmp[label="fx.cpp\nOpenMP",style=invis];
8
9 node[shape=box, color=blue, fillcolor=lightblue, style=filled];
10 FAUST[label="faust"];
11
12 dsp->FAUST[weight=10];
13 FAUST->scalar[weight=10];
14 FAUST->vector[label="-vec"];
15 FAUST->openmp[label="",style=invis];
16
17 }