Title: [152750] trunk/Source/WebCore
Revision
152750
Author
[email protected]
Date
2013-07-16 17:33:03 -0700 (Tue, 16 Jul 2013)

Log Message

Missing break in WebGLRenderingContext::validateCompressedTexFuncData()
https://bugs.webkit.org/show_bug.cgi?id=118742

Reviewed by Ryosuke Niwa.

* html/canvas/WebGLRenderingContext.cpp:
(WebCore::WebGLRenderingContext::validateCompressedTexFuncData):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (152749 => 152750)


--- trunk/Source/WebCore/ChangeLog	2013-07-17 00:32:14 UTC (rev 152749)
+++ trunk/Source/WebCore/ChangeLog	2013-07-17 00:33:03 UTC (rev 152750)
@@ -1,3 +1,13 @@
+2013-07-16  Pratik Solanki  <[email protected]>
+
+        Missing break in WebGLRenderingContext::validateCompressedTexFuncData()
+        https://bugs.webkit.org/show_bug.cgi?id=118742
+
+        Reviewed by Ryosuke Niwa.
+
+        * html/canvas/WebGLRenderingContext.cpp:
+        (WebCore::WebGLRenderingContext::validateCompressedTexFuncData):
+
 2013-07-16  Andreas Kling  <[email protected]>
 
         Atomicize HTMLAnchorElement.hash before passing it to JS.

Modified: trunk/Source/WebCore/html/canvas/WebGLRenderingContext.cpp (152749 => 152750)


--- trunk/Source/WebCore/html/canvas/WebGLRenderingContext.cpp	2013-07-17 00:32:14 UTC (rev 152749)
+++ trunk/Source/WebCore/html/canvas/WebGLRenderingContext.cpp	2013-07-17 00:33:03 UTC (rev 152750)
@@ -5266,6 +5266,7 @@
         {
             bytesRequired = floor(static_cast<double>((width + 3) / 4)) * floor(static_cast<double>((height + 3) / 4)) * 16;
         }
+        break;
     case Extensions3D::COMPRESSED_RGB_PVRTC_4BPPV1_IMG:
     case Extensions3D::COMPRESSED_RGBA_PVRTC_4BPPV1_IMG:
         {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to