Title: [174867] trunk/Source/WebCore
Revision
174867
Author
roger_f...@apple.com
Date
2014-10-19 00:01:55 -0700 (Sun, 19 Oct 2014)

Log Message

Unreviewed. Style fix following r174855.

* platform/graphics/opengl/GraphicsContext3DOpenGL.cpp:
(WebCore::GraphicsContext3D::readPixelsAndConvertToBGRAIfNecessary):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (174866 => 174867)


--- trunk/Source/WebCore/ChangeLog	2014-10-18 22:54:14 UTC (rev 174866)
+++ trunk/Source/WebCore/ChangeLog	2014-10-19 07:01:55 UTC (rev 174867)
@@ -1,3 +1,10 @@
+2014-10-19  Roger Fong  <roger_f...@apple.com>
+
+        Unreviewed. Style fix following r174855.
+
+        * platform/graphics/opengl/GraphicsContext3DOpenGL.cpp:
+        (WebCore::GraphicsContext3D::readPixelsAndConvertToBGRAIfNecessary):
+
 2014-10-18  Antti Koivisto  <an...@apple.com>
 
         REGRESSION (r173356): Safari can't install a profile, gets 'Download Failed error

Modified: trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGL.cpp (174866 => 174867)


--- trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGL.cpp	2014-10-18 22:54:14 UTC (rev 174866)
+++ trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGL.cpp	2014-10-19 07:01:55 UTC (rev 174867)
@@ -76,13 +76,13 @@
         vImage_Buffer src;
         src.height = height;
         src.width = width;
-        src.rowBytes = width*4;
+        src.rowBytes = width * 4;
         src.data = ""
 
         vImage_Buffer dest;
         dest.height = height;
         dest.width = width;
-        dest.rowBytes = width*4;
+        dest.rowBytes = width * 4;
         dest.data = ""
 
         // Swap pixel channels from RGBA to BGRA.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to