Evas filters: Add a note to the transform doc

This is a special operation, with a simplistic implementation.
This commit is contained in:
Jean-Philippe Andre 2014-02-19 19:48:44 +09:00
parent c256bdc367
commit bdb3ccd1dd
2 changed files with 8 additions and 0 deletions

View File

@ -1565,6 +1565,7 @@ _transform_padding_update(Evas_Filter_Program *pgm,
Apply a geometrical transformation to a buffer.
Right now, only <b>vertical flip</b> is implemented and available.
This operation does not blend and assumes the destination buffer is empty.
@code
transform (dst, op = vflip, src = input, oy = 0);

View File

@ -1,5 +1,12 @@
#include "evas_filter_private.h"
/* Apply geomeetrical transformations to a buffer.
* This filter is a bit simplistic at the moment.
*
* It also assumes the destination is empty, as it does not use blend
* operations. This should probably be fixed later on (use evas_map?).
*/
static Eina_Bool
_vflip_cpu(Evas_Filter_Command *cmd)
{