Title: [173323] trunk/Source/WebCore
Revision
173323
Author
roger_f...@apple.com
Date
2014-09-05 12:16:15 -0700 (Fri, 05 Sep 2014)

Log Message

Increase number of maximum active WebGL contexts.
https://bugs.webkit.org/show_bug.cgi?id=136551.
<rdar://problem/18236425>

Reviewed by Brent Fulgham.

Test covered by Khronos conformance test:
webgl/1.0.2/conformance/context/context-creation-and-destruction.html

* platform/graphics/mac/GraphicsContext3DMac.mm:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (173322 => 173323)


--- trunk/Source/WebCore/ChangeLog	2014-09-05 19:09:08 UTC (rev 173322)
+++ trunk/Source/WebCore/ChangeLog	2014-09-05 19:16:15 UTC (rev 173323)
@@ -531,6 +531,19 @@
 
 2014-09-04  Roger Fong  <roger_f...@apple.com>
 
+        Increase number of maximum active WebGL contexts.
+        https://bugs.webkit.org/show_bug.cgi?id=136551.
+        <rdar://problem/18236425>
+
+        Reviewed by Brent Fulgham.
+
+        Test covered by Khronos conformance test:
+        webgl/1.0.2/conformance/context/context-creation-and-destruction.html
+
+        * platform/graphics/mac/GraphicsContext3DMac.mm:
+
+2014-09-04  Roger Fong  <roger_f...@apple.com>
+
         Clicking on a select element should never hide the popup menu.
         https://bugs.webkit.org/show_bug.cgi?id=136548.
         <rdar://problem/10215926>

Modified: trunk/Source/WebCore/platform/graphics/mac/GraphicsContext3DMac.mm (173322 => 173323)


--- trunk/Source/WebCore/platform/graphics/mac/GraphicsContext3DMac.mm	2014-09-05 19:09:08 UTC (rev 173322)
+++ trunk/Source/WebCore/platform/graphics/mac/GraphicsContext3DMac.mm	2014-09-05 19:16:15 UTC (rev 173323)
@@ -61,7 +61,7 @@
 
 namespace WebCore {
 
-const int maxActiveContexts = 16;
+const int maxActiveContexts = 64;
 int GraphicsContext3D::numActiveContexts = 0;
 
 // FIXME: This class is currently empty on Mac, but will get populated as 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to