gstreamer/docs/plugins/camerabin.dot
Tim-Philipp Müller 0f70a6b885 docs: fix dist/distcheck issues with camerabin figures
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.
2010-05-26 14:06:11 +01:00

24 lines
675 B
Plaintext

/* 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;
}