cedric pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=35ae391d644275e0e84a0e1f039d2eea7898f5a4

commit 35ae391d644275e0e84a0e1f039d2eea7898f5a4
Author: Subhransu Mohanty <sub.moha...@samsung.com>
Date:   Mon Aug 17 16:00:34 2015 +0900

    ector: remove depricated file ector_blend_private.h
    
    Signed-off-by: Cedric BAIL <ced...@osg.samsung.com>
---
 src/lib/ector/software/ector_blend_private.h | 105 ---------------------------
 1 file changed, 105 deletions(-)

diff --git a/src/lib/ector/software/ector_blend_private.h 
b/src/lib/ector/software/ector_blend_private.h
deleted file mode 100644
index 0082baa..0000000
--- a/src/lib/ector/software/ector_blend_private.h
+++ /dev/null
@@ -1,105 +0,0 @@
-#ifndef ECTOR_BLEND_PRIVATE_H
-#define ECTOR_BLEND_PRIVATE_H
-
-#ifndef MIN
-#define MIN( a, b )  ( (a) < (b) ? (a) : (b) )
-#endif
-
-#ifndef MAX
-#define MAX( a, b )  ( (a) > (b) ? (a) : (b) )
-#endif
-
-#define ECTOR_ARGB_JOIN(a,r,g,b) \
-        (((a) << 24) + ((r) << 16) + ((g) << 8) + (b))
-
-#define ECTOR_MUL4_SYM(x, y) \
- ( ((((((x) >> 16) & 0xff00) * (((y) >> 16) & 0xff00)) + 0xff0000) & 
0xff000000) + \
-   ((((((x) >> 8) & 0xff00) * (((y) >> 16) & 0xff)) + 0xff00) & 0xff0000) + \
-   ((((((x) & 0xff00) * ((y) & 0xff00)) + 0xff0000) >> 16) & 0xff00) + \
-   (((((x) & 0xff) * ((y) & 0xff)) + 0xff) >> 8) )
-
-#define ECTOR_MUL_256(c, a) \
- ( (((((c) >> 8) & 0x00ff00ff) * (a)) & 0xff00ff00) + \
-   (((((c) & 0x00ff00ff) * (a)) >> 8) & 0x00ff00ff) )
-
-
-static inline void
-_ector_memfill(DATA32 *dest, uint value, int count)
-{
-    if (!count)
-        return;
-
-    int n = (count + 7) / 8;
-    switch (count & 0x07)
-    {
-    case 0: do { *dest++ = value;
-    case 7:      *dest++ = value;
-    case 6:      *dest++ = value;
-    case 5:      *dest++ = value;
-    case 4:      *dest++ = value;
-    case 3:      *dest++ = value;
-    case 2:      *dest++ = value;
-    case 1:      *dest++ = value;
-    } while (--n > 0);
-    }
-}
-
-
-static inline void 
-_ector_comp_func_source_over_mul_c(uint *dest, uint *src, DATA32 c, int 
length, uint const_alpha)
-{
-    if (const_alpha == 255) {
-        for (int i = 0; i < length; ++i) {
-            uint s = src[i];
-            DATA32 sc = ECTOR_MUL4_SYM(c, s);
-            uint a = (~sc) >> 24;
-            dest[i] = sc + ECTOR_MUL_256(dest[i], a);
-        }
-    } else {
-        for (int i = 0; i < length; ++i) {
-            uint s = src[i];
-            DATA32 sc = ECTOR_MUL4_SYM(c, s);
-            sc = ECTOR_MUL_256(sc, const_alpha);
-            uint a = (~sc) >> 24;
-            dest[i] = sc + ECTOR_MUL_256(dest[i], a);
-        }
-    }
-}
-
-
-static inline void 
-_ector_comp_func_source_over(uint *dest, uint *src, int length, uint 
const_alpha)
-{
-    if (const_alpha == 255) {
-        for (int i = 0; i < length; ++i) {
-            uint s = src[i];
-            if (s >= 0xff000000)
-                dest[i] = s;
-            else if (s != 0) {
-                uint a = (~s) >> 24;
-                dest[i] = s + ECTOR_MUL_256(dest[i], a);
-            }
-        }
-    } else {
-        for (int i = 0; i < length; ++i) {
-            uint s = ECTOR_MUL_256(src[i], const_alpha);
-            uint a = (~s) >> 24;
-            dest[i] = s + ECTOR_MUL_256(dest[i], a);
-        }
-    }
-}
-
-static inline uint 
-INTERPOLATE_PIXEL_256(uint x, uint a, uint y, uint b) {
-    uint t = (x & 0xff00ff) * a + (y & 0xff00ff) * b;
-    t >>= 8;
-    t &= 0xff00ff;
-
-    x = ((x >> 8) & 0xff00ff) * a + ((y >> 8) & 0xff00ff) * b;
-    x &= 0xff00ff00;
-    x |= t;
-    return x;
-}
-
-
-#endif
\ No newline at end of file

-- 


Reply via email to