mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
0f70a6b885
Move figures into docs/plugins as well, to avoid issues with make dist and make distcheck (make distdir will not first descend into child directories). Out-of-source build seems to still work as well.
23 lines
675 B
Text
23 lines
675 B
Text
/* dot -Tpng camerabin.dot -o camerabin.png */
|
|
|
|
digraph camera {
|
|
rankdir=LR;
|
|
fontname="Bitstream Vera Sans";
|
|
fontsize="8";
|
|
labelloc=t;
|
|
nodesep=.15;
|
|
label="Camera Pipeline";
|
|
node [style=filled, fillcolor="#eeeeee", shape=box, fontsize="7", fontname="Bitstream Vera Sans"];
|
|
edge [labelfontsize="7", fontsize="7", labelfontname="Bitstream Vera Sans", fontname="Bitstream Vera Sans"];
|
|
|
|
view_finder [ label="view finder" ];
|
|
image_capture [ label="image capture" ];
|
|
video_capture [ label="video capture" ];
|
|
|
|
capture -> view_finder;
|
|
capture -> image_capture;
|
|
capture -> video_capture;
|
|
image_capture -> view_finder;
|
|
video_capture -> view_finder;
|
|
}
|
|
|