From 54129dfcaab5fb7674808f9202dfb5a2ea5bd609 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Mon, 17 Feb 2014 20:23:07 +0900 Subject: [PATCH] Evas filters: Fix documentation for displace fillmode "none" is not supported, as it does not make much sense (how do we displace pixels without an underlying displacement map?) --- src/lib/evas/filters/evas_filter_parser.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/evas/filters/evas_filter_parser.c b/src/lib/evas/filters/evas_filter_parser.c index 48ec0a9e42..d86f5dc528 100644 --- a/src/lib/evas/filters/evas_filter_parser.c +++ b/src/lib/evas/filters/evas_filter_parser.c @@ -1307,7 +1307,9 @@ _displace_padding_update(Evas_Filter_Program *pgm, @c default is equivalent to @c smooth_stretch. @param src Source buffer @param dst Destination buffer. Must be of same color format and size as @a src. - @param fillmode Defines how to handle cases where the map has a different size from @a src and @a dst. It should most likely be @c stretch or @c repeat. See @ref evasfilter_fillmode "fillmodes". + @param fillmode Defines how to handle cases where the map has a different size from @a src and @a dst. + It should be a combination of @c stretch or @c repeat: @c none is not supported. + See @ref evasfilter_fillmode "fillmodes".

Displacement map