jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=996d17bcc5a08e75febb952586b6a87f48b990e4

commit 996d17bcc5a08e75febb952586b6a87f48b990e4
Author: se.osadchy <se.osad...@samsung.com>
Date:   Tue Jan 5 20:41:12 2016 +0900

    evas: Update Ector_Color structure.
    
    Summary: Add a field at the end of the structure for defining the color 
encoding.
    
    Reviewers: cedric, Hermet, raster, jpeg
    
    Reviewed By: jpeg
    
    Subscribers: jpeg
    
    Differential Revision: https://phab.enlightenment.org/D3530
---
 src/lib/ector/ector_util.h | 26 ++++++++++++++++++++++----
 1 file changed, 22 insertions(+), 4 deletions(-)

diff --git a/src/lib/ector/ector_util.h b/src/lib/ector/ector_util.h
index 6cf4e0a..426c9a8 100644
--- a/src/lib/ector/ector_util.h
+++ b/src/lib/ector/ector_util.h
@@ -7,12 +7,20 @@
 
 typedef struct _Ector_Color Ector_Color;
 
+typedef enum _Ector_Color_Type
+  {
+    ECTOR_COLOR,
+    ECTOR_COLOR16
+  } Ector_Color_Type;
+
 struct _Ector_Color
 {
-       unsigned short r;
-       unsigned short g;
-       unsigned short b;
-       unsigned short a;
+   unsigned short r;
+   unsigned short g;
+   unsigned short b;
+   unsigned short a;
+
+   Ector_Color_Type type;
 };
 
 static inline void
@@ -51,6 +59,8 @@ ector_color_set(Ector_Color *color, unsigned char r, unsigned 
char g,
    color->g = ECTOR_COLOR_SET(g);
    color->b = ECTOR_COLOR_SET(b);
    color->a = ECTOR_COLOR_SET(a);
+
+   color->type = ECTOR_COLOR;
 }
 
 static inline void
@@ -61,6 +71,14 @@ ector_color16_set(Ector_Color *color, unsigned short r, 
unsigned short g,
    color->g = ECTOR_COLOR16_SET(g);
    color->b = ECTOR_COLOR16_SET(b);
    color->a = ECTOR_COLOR16_SET(a);
+
+   color->type = ECTOR_COLOR16;
+}
+
+static inline Ector_Color_Type
+ector_color_type_get(Ector_Color *color)
+{
+   return color->type;
 }
 
 #endif

-- 


Reply via email to