Evas filters: Silence some clang warnings

Remove @hidden tag. It does not exist.
Initialize value of pow2_div. In theory not needed but better be safe :)
This commit is contained in:
Jean-Philippe Andre 2014-02-14 12:07:54 +09:00
parent eb1c452156
commit f603d5da86
2 changed files with 5 additions and 5 deletions

View File

@ -62,7 +62,7 @@ evas_filter_context_new(Evas_Public_Data *evas, Eina_Bool async)
return ctx;
}
/** @hidden private function to reset the filter context */
/* Private function to reset the filter context. Used from parser.c */
void
evas_filter_context_clear(Evas_Filter_Context *ctx)
{

View File

@ -567,7 +567,7 @@ static void
_gaussian_blur_horiz_alpha(DATA8 *src, DATA8 *dst, int radius, int w, int h)
{
int *weights;
int k, pow2_div;
int k, pow2_div = 0;
weights = alloca((2 * radius + 1) * sizeof(int));
@ -588,7 +588,7 @@ static void
_gaussian_blur_vert_alpha(DATA8 *src, DATA8 *dst, int radius, int w, int h)
{
int *weights;
int k, pow2_div;
int k, pow2_div = 0;
weights = alloca((2 * radius + 1) * sizeof(int));
@ -609,7 +609,7 @@ static void
_gaussian_blur_horiz_rgba(DATA32 *src, DATA32 *dst, int radius, int w, int h)
{
int *weights;
int k, pow2_div;
int k, pow2_div = 0;
weights = alloca((2 * radius + 1) * sizeof(int));
@ -630,7 +630,7 @@ static void
_gaussian_blur_vert_rgba(DATA32 *src, DATA32 *dst, int radius, int w, int h)
{
int *weights;
int k, pow2_div;
int k, pow2_div = 0;
weights = alloca((2 * radius + 1) * sizeof(int));