diff options
author | Stefan Schmidt <stefan@osg.samsung.com> | 2015-06-09 10:06:27 +0200 |
---|---|---|
committer | Stefan Schmidt <stefan@osg.samsung.com> | 2015-06-09 10:38:40 +0200 |
commit | 64a60f32a93840b5032b416d8371913e66240981 (patch) | |
tree | 71da95416bdaf571384a530f400560a3059c9c2a /src/lib/evas/common/evas_op_copy_main_.c | |
parent | c4dd19c2dfb0a3f44e3a59b651c30523341c68eb (diff) |
evas/evas_op_copy_main: Remove superfluous if branch.
We do the same in both branches: return func.
CID: 1267483, 1267484, 1267487, 1267488
Diffstat (limited to '')
-rw-r--r-- | src/lib/evas/common/evas_op_copy_main_.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/evas/common/evas_op_copy_main_.c b/src/lib/evas/common/evas_op_copy_main_.c index 16fc3f11b5..51428ed6d6 100644 --- a/src/lib/evas/common/evas_op_copy_main_.c +++ b/src/lib/evas/common/evas_op_copy_main_.c | |||
@@ -173,7 +173,6 @@ copy_gfx_span_func_cpu(int s, int m, int c, int d) | |||
173 | #endif | 173 | #endif |
174 | cpu = CPU_C; | 174 | cpu = CPU_C; |
175 | func = op_copy_span_funcs[s][m][c][d][cpu]; | 175 | func = op_copy_span_funcs[s][m][c][d][cpu]; |
176 | if (func) return func; | ||
177 | return func; | 176 | return func; |
178 | } | 177 | } |
179 | 178 | ||
@@ -278,7 +277,6 @@ copy_gfx_pt_func_cpu(int s, int m, int c, int d) | |||
278 | #endif | 277 | #endif |
279 | cpu = CPU_C; | 278 | cpu = CPU_C; |
280 | func = op_copy_pt_funcs[s][m][c][d][cpu]; | 279 | func = op_copy_pt_funcs[s][m][c][d][cpu]; |
281 | if (func) return func; | ||
282 | return func; | 280 | return func; |
283 | } | 281 | } |
284 | 282 | ||
@@ -433,7 +431,6 @@ copy_rel_gfx_span_func_cpu(int s, int m, int c, int d) | |||
433 | #endif | 431 | #endif |
434 | cpu = CPU_C; | 432 | cpu = CPU_C; |
435 | func = op_copy_rel_span_funcs[s][m][c][d][cpu]; | 433 | func = op_copy_rel_span_funcs[s][m][c][d][cpu]; |
436 | if (func) return func; | ||
437 | return func; | 434 | return func; |
438 | } | 435 | } |
439 | 436 | ||
@@ -538,7 +535,6 @@ copy_rel_gfx_pt_func_cpu(int s, int m, int c, int d) | |||
538 | #endif | 535 | #endif |
539 | cpu = CPU_C; | 536 | cpu = CPU_C; |
540 | func = op_copy_rel_pt_funcs[s][m][c][d][cpu]; | 537 | func = op_copy_rel_pt_funcs[s][m][c][d][cpu]; |
541 | if (func) return func; | ||
542 | return func; | 538 | return func; |
543 | } | 539 | } |
544 | 540 | ||