From f7150570b08bb4db781fd319ecc8197ea54bbeea Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Thu, 17 Apr 2014 19:03:19 +0900 Subject: [PATCH] Eet: Use medium quality for ETC1 by default And remove dithering. This is the same as 07700a799ce759 --- src/lib/eet/eet_image.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/lib/eet/eet_image.c b/src/lib/eet/eet_image.c index 6564372..d5bda22 100644 --- a/src/lib/eet/eet_image.c +++ b/src/lib/eet/eet_image.c @@ -1018,8 +1018,11 @@ eet_data_image_etc1_compressed_convert(int *size, nw = htonl(w); nh = htonl(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; -- 2.7.4