jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=5b1ed7860554cc3196ac5fb217e5748351e9d40b
commit 5b1ed7860554cc3196ac5fb217e5748351e9d40b Author: Jean-Philippe Andre <jp.an...@samsung.com> Date: Wed Jun 18 17:10:23 2014 +0900 Evas: Fix some comments in the TGV loader --- src/modules/evas/loaders/tgv/evas_image_load_tgv.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/modules/evas/loaders/tgv/evas_image_load_tgv.c b/src/modules/evas/loaders/tgv/evas_image_load_tgv.c index 5d84ccb..d30870b 100644 --- a/src/modules/evas/loaders/tgv/evas_image_load_tgv.c +++ b/src/modules/evas/loaders/tgv/evas_image_load_tgv.c @@ -10,7 +10,6 @@ # include <winsock2.h> #endif /* ifdef _WIN32 */ -// rg_etc1.h must define HAVE_ETC2_DECODER if there is ETC2 support #include "lz4.h" #include "rg_etc1.h" #include "Evas_Loader.h" @@ -18,6 +17,7 @@ #ifdef BUILD_NEON #include <arm_neon.h> #endif + /************************************************************** * The TGV file format is oriented around compression mecanism * that hardware are good at decompressing. We do still provide @@ -44,7 +44,8 @@ **************************************************************/ // FIXME: wondering if we should support mipmap -// FIXME: instead of the complete size, maybe just the usefull left over byte + number of block (cedric) -- Nope, the real size is much better (jpeg) +// TODO: support ETC1+ETC2 images (RGB only) +// TODO: support ETC1 RGB + ETC1 Alpha (2 textures for ETC1 RGBA) typedef struct _Evas_Loader_Internal Evas_Loader_Internal; struct _Evas_Loader_Internal --