hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=57c4d83b2e0de0a1a9e939f7762c1961e47cf74c

commit 57c4d83b2e0de0a1a9e939f7762c1961e47cf74c
Author: Sungtaek Hong <sth253.h...@samsung.com>
Date:   Wed Sep 21 17:40:53 2016 +0900

    evas: remove unnecessary check for clip coords.
    
    Summary: (dst_clip_w <= 0 || dst_clip_h <= 0) is already checked.
    
    Reviewers: jpeg, cedric, Hermet
    
    Reviewed By: Hermet
    
    Subscribers: conr2d
    
    Differential Revision: https://phab.enlightenment.org/D4303
---
 src/lib/evas/common/evas_scale_sample.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/lib/evas/common/evas_scale_sample.c 
b/src/lib/evas/common/evas_scale_sample.c
index 008e43d..71a805e 100644
--- a/src/lib/evas/common/evas_scale_sample.c
+++ b/src/lib/evas/common/evas_scale_sample.c
@@ -553,7 +553,6 @@ scale_rgba_in_to_out_clip_sample_internal(RGBA_Image *src, 
RGBA_Image *dst,
      }
    if (dst_region_w <= 0) return EINA_FALSE;
    if (src_region_w <= 0) return EINA_FALSE;
-   if (dst_clip_w <= 0) return EINA_FALSE;
    if (dst_clip_x >= dst_w) return EINA_FALSE;
    if (dst_clip_x < dst_region_x)
      {
@@ -582,7 +581,6 @@ scale_rgba_in_to_out_clip_sample_internal(RGBA_Image *src, 
RGBA_Image *dst,
      }
    if (dst_region_h <= 0) return EINA_FALSE;
    if (src_region_h <= 0) return EINA_FALSE;
-   if (dst_clip_h <= 0) return EINA_FALSE;
    if (dst_clip_y >= dst_h) return EINA_FALSE;
    if (dst_clip_y < dst_region_y)
      {

-- 


Reply via email to