evas/evas_op_mask_main: Remove superfluous if branch.

We do the same in both branches: return func.

CID: 1267481, 1267485
This commit is contained in:
Stefan Schmidt 2015-06-09 10:10:35 +02:00
parent 64a60f32a9
commit 9df111d766
1 changed files with 0 additions and 2 deletions

View File

@ -104,7 +104,6 @@ mask_gfx_span_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_mask_span_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}
@ -201,7 +200,6 @@ mask_gfx_pt_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_mask_pt_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}