Chromium Code Reviews| Index: blimp/engine/renderer/engine_image_serialization_processor.cc |
| diff --git a/blimp/engine/renderer/engine_image_serialization_processor.cc b/blimp/engine/renderer/engine_image_serialization_processor.cc |
| index 8d1f2bb5f05310f481cd3fab66ac312ee8da584a..3e6aad72a3bcdc69ec15686d51f5888785d52df3 100644 |
| --- a/blimp/engine/renderer/engine_image_serialization_processor.cc |
| +++ b/blimp/engine/renderer/engine_image_serialization_processor.cc |
| @@ -67,7 +67,7 @@ class WebPImageEncoder : public SkPixelSerializer { |
| // the same as the default configuration for WebP, but since any change in |
| // the WebP defaults would invalidate all caches they are hard coded. |
| config.quality = 75.0; // between 0 (smallest file) and 100 (biggest). |
| - config.method = 4; // quality/speed trade-off (0=fast, 6=slower-better). |
| + config.method = 0; // quality/speed trade-off (0=fast, 6=slower-better). |
|
nyquist
2016/04/14 17:19:30
I discussed this with urvang@ in patch set 5 of ht
urvang
2016/04/14 17:41:16
I understand that this is a temporary solution bef
Khushal
2016/04/14 18:46:24
Thanks for the suggestion Urvang. I tried using mu
|
| // Encode the picture using the given configuration. |
| bool success = WebPEncode(&config, &picture); |