evas/evas_op_blend_main: Remove superfluous if branch.

We do the same in both branches: return func.

CID: 1267469, 1267470, 1267473, 1267474
This commit is contained in:
Stefan Schmidt 2015-06-09 10:02:59 +02:00
parent 85e5e9da5b
commit c4dd19c2df
1 changed files with 0 additions and 4 deletions

View File

@ -185,7 +185,6 @@ blend_gfx_span_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_blend_span_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}
@ -307,7 +306,6 @@ blend_gfx_pt_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_blend_pt_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}
@ -470,7 +468,6 @@ blend_rel_gfx_span_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_blend_rel_span_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}
@ -587,7 +584,6 @@ blend_rel_gfx_pt_func_cpu(int s, int m, int c, int d)
#endif
cpu = CPU_C;
func = op_blend_rel_pt_funcs[s][m][c][d][cpu];
if (func) return func;
return func;
}