jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=f7150570b08bb4db781fd319ecc8197ea54bbeea

commit f7150570b08bb4db781fd319ecc8197ea54bbeea
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Thu Apr 17 19:03:19 2014 +0900

    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;

-- 


Reply via email to