From cc21f8f17332250975be0968093e97dd20280ef3 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Tue, 4 Mar 2014 13:58:30 +0900 Subject: [PATCH] Evas filters: Clean up some duplicate includes No functional change --- src/lib/evas/filters/evas_filter_bump.c | 7 ------- src/lib/evas/filters/evas_filter_mask.c | 3 --- src/lib/evas/filters/evas_filter_parser.c | 2 +- 3 files changed, 1 insertion(+), 11 deletions(-) diff --git a/src/lib/evas/filters/evas_filter_bump.c b/src/lib/evas/filters/evas_filter_bump.c index 0c1bb94add..a269145390 100644 --- a/src/lib/evas/filters/evas_filter_bump.c +++ b/src/lib/evas/filters/evas_filter_bump.c @@ -1,17 +1,10 @@ /* Simple bump map algorithms for the software engine */ -#include "evas_common_private.h" -#include "evas_private.h" -#include "evas_filter.h" #include "evas_filter_private.h" #include "evas_blend_private.h" #include -#undef ENFN -#undef ENDT -#define ENFN cmd->ctx->evas->engine.func -#define ENDT cmd->ctx->evas->engine.data.output #ifdef CLAMP # undef CLAMP diff --git a/src/lib/evas/filters/evas_filter_mask.c b/src/lib/evas/filters/evas_filter_mask.c index 61a31e3ee7..96e8c543a9 100644 --- a/src/lib/evas/filters/evas_filter_mask.c +++ b/src/lib/evas/filters/evas_filter_mask.c @@ -1,8 +1,5 @@ /* Implementation of some masking functions for the software engine */ -#include "evas_common_private.h" -#include "evas_private.h" -#include "evas_filter.h" #include "evas_filter_private.h" #include "evas_blend_private.h" diff --git a/src/lib/evas/filters/evas_filter_parser.c b/src/lib/evas/filters/evas_filter_parser.c index 204bba4b87..ed0c4dd396 100644 --- a/src/lib/evas/filters/evas_filter_parser.c +++ b/src/lib/evas/filters/evas_filter_parser.c @@ -846,7 +846,7 @@ static Buffer * _buffer_get(Evas_Filter_Program *pgm, const char *name) { Buffer *buf; - Eo *source; + Evas_Object *source; EINA_SAFETY_ON_NULL_RETURN_VAL(pgm, NULL); EINA_SAFETY_ON_NULL_RETURN_VAL(name, NULL);