From: Jean-Philippe Andre Date: Wed, 16 Apr 2014 09:28:56 +0000 (+0900) Subject: Evas TGV saver: Use medium quality by default X-Git-Tag: v1.10.0-alpha1~161 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=07700a799ce7598b03e5a552db358e223f32eb61;p=platform%2Fupstream%2Fefl.git Evas TGV saver: Use medium quality by default The default quality is 80 and high quality is horribly slow, so default to medium quality instead (it's already very slow). If you really want to shoot yourself in the foot and use high quality, just set quality > 95 and go make some coffee. Also, disable dithering, it creates horrible artifacts on real life pictures (gradients and flat surfaces especially). --- diff --git a/src/modules/evas/savers/tgv/evas_image_save_tgv.c b/src/modules/evas/savers/tgv/evas_image_save_tgv.c index 3cad4ba..ce1ee72 100644 --- a/src/modules/evas/savers/tgv/evas_image_save_tgv.c +++ b/src/modules/evas/savers/tgv/evas_image_save_tgv.c @@ -42,8 +42,10 @@ evas_image_save_file_tgv(RGBA_Image *im, width = htonl(im->cache_entry.w); height = htonl(im->cache_entry.h); - param.m_dithering = 1; - if (quality > 70) + // Disable dithering, as it will deteriorate the quality of flat surfaces + param.m_dithering = 0; + + if (quality > 95) { param.m_quality = rg_etc1_high_quality; block = 7;