diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2013-09-24 18:18:53 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2013-10-28 15:47:15 +0900 |
commit | 25d71f823668ecb1865c61f306890fee654b9d32 (patch) | |
tree | 3f7ffe566f91fb7433ef3644f9bed99733e025fd /src/lib/evas/cserve2/evas_cs2.h | |
parent | 1e82480c9a074163ec6788a8a60ead403f7b0658 (diff) |
evas/cserve2: Add alpha flag to Image_data
Diffstat (limited to '')
-rw-r--r-- | src/lib/evas/cserve2/evas_cs2.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/evas/cserve2/evas_cs2.h b/src/lib/evas/cserve2/evas_cs2.h index 5378790999..7dcd441e99 100644 --- a/src/lib/evas/cserve2/evas_cs2.h +++ b/src/lib/evas/cserve2/evas_cs2.h | |||
@@ -93,6 +93,7 @@ struct _Msg_Loaded { | |||
93 | struct { | 93 | struct { |
94 | unsigned int w, h; // Real dimensions of this image. May differ from Msg_Opened::image::{w,h} after scaling. | 94 | unsigned int w, h; // Real dimensions of this image. May differ from Msg_Opened::image::{w,h} after scaling. |
95 | } image; | 95 | } image; |
96 | Eina_Bool alpha : 1; | ||
96 | Eina_Bool alpha_sparse : 1; | 97 | Eina_Bool alpha_sparse : 1; |
97 | }; | 98 | }; |
98 | 99 | ||
@@ -358,6 +359,7 @@ struct _Image_Data { | |||
358 | string_t shm_id; | 359 | string_t shm_id; |
359 | Evas_Image_Load_Opts opts; | 360 | Evas_Image_Load_Opts opts; |
360 | uint32_t w, h; | 361 | uint32_t w, h; |
362 | Eina_Bool alpha : 1; | ||
361 | Eina_Bool alpha_sparse : 1; | 363 | Eina_Bool alpha_sparse : 1; |
362 | Eina_Bool unused : 1; | 364 | Eina_Bool unused : 1; |
363 | Eina_Bool doload : 1; | 365 | Eina_Bool doload : 1; |