Evas filters: Improve doc automatization

Include example filter codes from src/examples in Doxygen.
Use these examples for the generation as well.
This commit is contained in:
Jean-Philippe Andre 2014-02-13 17:26:33 +09:00
parent b9e3e68c3b
commit a72be5d076
8 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1 @@
blend (color = #3399FF);

View File

@ -0,0 +1,2 @@
blur (10, color = black, oy = 5, ox = 5);
blend ();

View File

@ -0,0 +1,3 @@
buffer : a (alpha);
blur (5, dst = a);
bump (map = a, compensate = yes, color = cyan, specular = 10.0);

View File

@ -0,0 +1,4 @@
buffer : a (alpha);
blur (4, dst = a);
curve (0:0 - 20:0 - 60:255 - 160:255 - 200:0 - 255:0, src = a, dst = a);
blend(src = a, color = black);

View File

@ -0,0 +1,5 @@
buffer : fat (alpha);
grow (8, dst = fat);
blur (12, src = fat, color = darkblue);
blur (4, color = cyan);
blend ();

View File

@ -0,0 +1,4 @@
buffer : fat (alpha);
grow (4, dst = fat);
blend (src = fat, color = black);
blend (color = white);

View File

@ -0,0 +1,5 @@
buffer: a (alpha);
blur(5, dst = a);
curve(points = 0:255 - 128:255 - 255:0, src = a, dst = a);
blend(color = black);
mask(mask = a, color = cyan);

View File

@ -0,0 +1,4 @@
buffer : t (alpha);
transform (oy = 20, dst = t);
blend (src = t, color = silver);
blend (color = white);