diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2015-04-13 20:54:23 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2015-04-14 16:37:12 +0900 |
commit | ced11e92a8365c66e9200498cb6c6ff7228fa992 (patch) | |
tree | 5460f884e61e3f24b67ea020d6848ac5d2054e63 /src/lib/emile | |
parent | be40389bea4557e58eaae13a5b6f81a48a9c5f68 (diff) |
Emile image: Fix decoding of ETC1+Alpha images
This bug is probably a copy&paste issue when writing emile.
Diffstat (limited to 'src/lib/emile')
-rw-r--r-- | src/lib/emile/emile_image.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/emile/emile_image.c b/src/lib/emile/emile_image.c index d85a153bc9..9ea45396b7 100644 --- a/src/lib/emile/emile_image.c +++ b/src/lib/emile/emile_image.c | |||
@@ -305,6 +305,7 @@ _emile_tgv_head(Emile_Image *image, | |||
305 | prop->alpha = EINA_TRUE; | 305 | prop->alpha = EINA_TRUE; |
306 | prop->premul = !!(m[OFFSET_OPTIONS] & 0x4); | 306 | prop->premul = !!(m[OFFSET_OPTIONS] & 0x4); |
307 | image->unpremul = prop->premul; | 307 | image->unpremul = prop->premul; |
308 | image->cspace = EMILE_COLORSPACE_ETC1_ALPHA; | ||
308 | break; | 309 | break; |
309 | 310 | ||
310 | default: | 311 | default: |