Title: [149031] trunk/Source/WebCore
Revision
149031
Author
[email protected]
Date
2013-04-24 06:11:58 -0700 (Wed, 24 Apr 2013)

Log Message

Fix cast-align WebCore/platform/graphics/GraphicsContext3D.cpp on ARM
https://bugs.webkit.org/show_bug.cgi?id=115036

Reviewed by Benjamin Poulain.

* platform/graphics/GraphicsContext3D.cpp:
(WebCore):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (149030 => 149031)


--- trunk/Source/WebCore/ChangeLog	2013-04-24 13:03:45 UTC (rev 149030)
+++ trunk/Source/WebCore/ChangeLog	2013-04-24 13:11:58 UTC (rev 149031)
@@ -1,3 +1,13 @@
+2013-04-24  Csaba Osztrogonác  <[email protected]>
+
+        Fix cast-align WebCore/platform/graphics/GraphicsContext3D.cpp on ARM
+        https://bugs.webkit.org/show_bug.cgi?id=115036
+
+        Reviewed by Benjamin Poulain.
+
+        * platform/graphics/GraphicsContext3D.cpp:
+        (WebCore):
+
 2013-04-24  Andreas Kling  <[email protected]>
 
         Remove unnecessary MutableStylePropertySet casts.

Modified: trunk/Source/WebCore/platform/graphics/GraphicsContext3D.cpp (149030 => 149031)


--- trunk/Source/WebCore/platform/graphics/GraphicsContext3D.cpp	2013-04-24 13:03:45 UTC (rev 149030)
+++ trunk/Source/WebCore/platform/graphics/GraphicsContext3D.cpp	2013-04-24 13:11:58 UTC (rev 149031)
@@ -1335,8 +1335,8 @@
         }
     } else if (!trivialUnpack && !trivialPack) {
         for (size_t i = 0; i < m_height; ++i) {
-            unpack<SrcFormat>(srcRowStart, reinterpret_cast<IntermediateSrcType*>(m_unpackedIntermediateSrcData.get()), m_width);
-            pack<DstFormat, alphaOp>(reinterpret_cast<IntermediateSrcType*>(m_unpackedIntermediateSrcData.get()), dstRowStart, m_width);
+            unpack<SrcFormat>(srcRowStart, reinterpret_cast_ptr<IntermediateSrcType*>(m_unpackedIntermediateSrcData.get()), m_width);
+            pack<DstFormat, alphaOp>(reinterpret_cast_ptr<IntermediateSrcType*>(m_unpackedIntermediateSrcData.get()), dstRowStart, m_width);
             srcRowStart += srcStrideInElements;
             dstRowStart += dstStrideInElements;
         }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to