Get rid of trailing whitespaces (5 / 14)

Remove trailing whitespaces
Differential Revision: https://phab.enlightenment.org/D12003
This commit is contained in:
Elyes HAOUAS 2020-06-20 09:44:55 +00:00 committed by Stefan Schmidt
parent 1fd0435f21
commit 1d91d61514
2 changed files with 5 additions and 5 deletions

View File

@ -140,7 +140,7 @@ _ector_renderer_software_image_ector_renderer_draw(Eo *obj EINA_UNUSED,
temp = draw_mul_256(pd->opacity, *src);
}
int inv_alpha = 255 - ((temp) >> 24);
*dst = temp + draw_mul_256(inv_alpha, *dst);
*dst = temp + draw_mul_256(inv_alpha, *dst);
}
}

View File

@ -271,7 +271,7 @@ typedef struct _Line
double y2;
}Line;
static void
static void
_line_value_set(Line *l, double x1, double y1, double x2, double y2)
{
l->x1 = x1;
@ -281,7 +281,7 @@ _line_value_set(Line *l, double x1, double y1, double x2, double y2)
}
// approximate sqrt(x*x + y*y) using alpha max plus beta min algorithm.
// With alpha = 1, beta = 3/8, giving results with the largest error less
// With alpha = 1, beta = 3/8, giving results with the largest error less
// than 7% compared to the exact value.
static double
_line_length(Line *l)
@ -339,7 +339,7 @@ _dasher_line_to(Dash_Stroker *dasher, double x, double y)
_outline_line_to(dasher->outline, x, y);
}
}
else
else
{
while (line_len > dasher->cur_dash_length)
{
@ -404,7 +404,7 @@ _dasher_cubic_to(Dash_Stroker *dasher, double cx1 , double cy1, double cx2, doub
_outline_cubic_to(dasher->outline, cx1, cy1, cx2, cy2, x, y);
}
}
else
else
{
while (bez_len > dasher->cur_dash_length)
{