Title: [223512] releases/WebKitGTK/webkit-2.18/Source/WebCore
- Revision
- 223512
- Author
- [email protected]
- Date
- 2017-10-17 03:02:01 -0700 (Tue, 17 Oct 2017)
Log Message
Merge r222906 - Align BitmapImage::LargeAnimationCutoff to a megabyte value
https://bugs.webkit.org/show_bug.cgi?id=177924
Reviewed by Carlos Garcia Campos.
* platform/graphics/BitmapImage.h: Fix the 1014 multiplier used to calculate
the LargeAnimationCutoff value. It was most likely a typo.
Modified Paths
Diff
Modified: releases/WebKitGTK/webkit-2.18/Source/WebCore/ChangeLog (223511 => 223512)
--- releases/WebKitGTK/webkit-2.18/Source/WebCore/ChangeLog 2017-10-17 10:00:46 UTC (rev 223511)
+++ releases/WebKitGTK/webkit-2.18/Source/WebCore/ChangeLog 2017-10-17 10:02:01 UTC (rev 223512)
@@ -1,3 +1,13 @@
+2017-10-05 Zan Dobersek <[email protected]>
+
+ Align BitmapImage::LargeAnimationCutoff to a megabyte value
+ https://bugs.webkit.org/show_bug.cgi?id=177924
+
+ Reviewed by Carlos Garcia Campos.
+
+ * platform/graphics/BitmapImage.h: Fix the 1014 multiplier used to calculate
+ the LargeAnimationCutoff value. It was most likely a typo.
+
2017-10-04 Miguel Gomez <[email protected]>
[GTK][WPE] Fix playback of GIFs
Modified: releases/WebKitGTK/webkit-2.18/Source/WebCore/platform/graphics/BitmapImage.h (223511 => 223512)
--- releases/WebKitGTK/webkit-2.18/Source/WebCore/platform/graphics/BitmapImage.h 2017-10-17 10:00:46 UTC (rev 223511)
+++ releases/WebKitGTK/webkit-2.18/Source/WebCore/platform/graphics/BitmapImage.h 2017-10-17 10:02:01 UTC (rev 223512)
@@ -200,7 +200,7 @@
void dump(WTF::TextStream&) const override;
// Animated images over a certain size are considered large enough that we'll only hang on to one frame at a time.
- static const unsigned LargeAnimationCutoff = 30 * 1014 * 1024;
+ static const unsigned LargeAnimationCutoff = 30 * 1024 * 1024;
mutable ImageSource m_source;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes