evas/evas_op_blend_main: Remove superfluous if branch.
authorStefan Schmidt <stefan@osg.samsung.com>
Tue, 9 Jun 2015 08:02:59 +0000 (10:02 +0200)
committerStefan Schmidt <stefan@osg.samsung.com>
Tue, 9 Jun 2015 08:38:40 +0000 (10:38 +0200)
We do the same in both branches: return func.

CID: 1267469, 1267470, 1267473, 1267474

src/lib/evas/common/evas_op_blend_main_.c

index 33f7a7a..035f401 100644 (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;
 }