Title: [108466] trunk/Source/WebCore
Revision
108466
Author
zherc...@webkit.org
Date
2012-02-22 01:56:58 -0800 (Wed, 22 Feb 2012)

Log Message

[Qt] clipToImageBuffer assertion fix in debug mode on Qt.

Rubber stamped by Csaba Osztrogonác.

* platform/graphics/qt/GraphicsContextQt.cpp:
(WebCore::GraphicsContext::restorePlatformState):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (108465 => 108466)


--- trunk/Source/WebCore/ChangeLog	2012-02-22 09:45:55 UTC (rev 108465)
+++ trunk/Source/WebCore/ChangeLog	2012-02-22 09:56:58 UTC (rev 108466)
@@ -1,3 +1,12 @@
+2012-02-22  Zoltan Herczeg  <zherc...@webkit.org>
+
+        [Qt] clipToImageBuffer assertion fix in debug mode on Qt.
+
+        Rubber stamped by Csaba Osztrogonác.
+
+        * platform/graphics/qt/GraphicsContextQt.cpp:
+        (WebCore::GraphicsContext::restorePlatformState):
+
 2012-02-22  Adam Barth  <aba...@webkit.org>
 
         [GTK] fast/frames/frame-dead-region.html crash

Modified: trunk/Source/WebCore/platform/graphics/qt/GraphicsContextQt.cpp (108465 => 108466)


--- trunk/Source/WebCore/platform/graphics/qt/GraphicsContextQt.cpp	2012-02-22 09:45:55 UTC (rev 108465)
+++ trunk/Source/WebCore/platform/graphics/qt/GraphicsContextQt.cpp	2012-02-22 09:56:58 UTC (rev 108466)
@@ -301,7 +301,7 @@
 {
     if (!m_data->layers.isEmpty() && !m_data->layers.top()->alphaMask.isNull())
         if (!--m_data->layers.top()->saveCounter)
-            endTransparencyLayer();
+            endPlatformTransparencyLayer();
 
     m_data->p()->restore();
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to