evas/evas_op_copy_main: Remove superfluous if branch.

We do the same in both branches: return func.

CID: 1267483, 1267484, 1267487, 1267488
This commit is contained in:
Stefan Schmidt 2015-06-09 10:06:27 +02:00
parent c4dd19c2df
commit 64a60f32a9
1 changed files with 0 additions and 4 deletions

View File

@ -173,7 +173,6 @@ copy_gfx_span_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_copy_span_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}
@ -278,7 +277,6 @@ copy_gfx_pt_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_copy_pt_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}
@ -433,7 +431,6 @@ copy_rel_gfx_span_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_copy_rel_span_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}
@ -538,7 +535,6 @@ copy_rel_gfx_pt_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_copy_rel_pt_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}