Title: [132387] trunk/Source/WebCore
Revision
132387
Author
[email protected]
Date
2012-10-24 13:15:55 -0700 (Wed, 24 Oct 2012)

Log Message

BlackBerry fix for webgl-depth-texture.html
https://bugs.webkit.org/show_bug.cgi?id=100258

Patch by Jonathan Feldstein <[email protected]> on 2012-10-24
Reviewed by Yong Li.

Removed a platform specific define that is unnecessary.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (132386 => 132387)


--- trunk/Source/WebCore/ChangeLog	2012-10-24 19:31:16 UTC (rev 132386)
+++ trunk/Source/WebCore/ChangeLog	2012-10-24 20:15:55 UTC (rev 132387)
@@ -1,3 +1,15 @@
+2012-10-24  Jonathan Feldstein  <[email protected]>
+
+        BlackBerry fix for webgl-depth-texture.html
+        https://bugs.webkit.org/show_bug.cgi?id=100258
+
+        Reviewed by Yong Li.
+
+        Removed a platform specific define that is unnecessary.
+
+        * platform/graphics/GraphicsContext3D.cpp:
+        (WebCore::GraphicsContext3D::computeFormatAndTypeParameters):
+
 2012-10-24  Nico Weber  <[email protected]>
 
         Honor image orientation in GraphicsContextSkia

Modified: trunk/Source/WebCore/platform/graphics/GraphicsContext3D.cpp (132386 => 132387)


--- trunk/Source/WebCore/platform/graphics/GraphicsContext3D.cpp	2012-10-24 19:31:16 UTC (rev 132386)
+++ trunk/Source/WebCore/platform/graphics/GraphicsContext3D.cpp	2012-10-24 20:15:55 UTC (rev 132387)
@@ -116,9 +116,7 @@
         *componentsPerPixel = 1;
         *bytesPerComponent = sizeof(GC3Dushort);
         break;
-#if !PLATFORM(BLACKBERRY)
     case GraphicsContext3D::UNSIGNED_INT_24_8:
-#endif
     case GraphicsContext3D::UNSIGNED_INT:
         *bytesPerComponent = sizeof(GC3Duint);
         break;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to