Title: [211085] trunk/Source/WebCore
Revision
211085
Author
commit-qu...@webkit.org
Date
2017-01-24 09:01:44 -0800 (Tue, 24 Jan 2017)

Log Message

Remove always true openGLMultisamplingEnabled setting
https://bugs.webkit.org/show_bug.cgi?id=167364

Patch by Joseph Pecoraro <pecor...@apple.com> on 2017-01-24
Reviewed by Sam Weinig.

* html/canvas/WebGLRenderingContextBase.cpp:
(WebCore::WebGLRenderingContextBase::create):
* page/Settings.in:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (211084 => 211085)


--- trunk/Source/WebCore/ChangeLog	2017-01-24 16:25:31 UTC (rev 211084)
+++ trunk/Source/WebCore/ChangeLog	2017-01-24 17:01:44 UTC (rev 211085)
@@ -1,3 +1,14 @@
+2017-01-24  Joseph Pecoraro  <pecor...@apple.com>
+
+        Remove always true openGLMultisamplingEnabled setting
+        https://bugs.webkit.org/show_bug.cgi?id=167364
+
+        Reviewed by Sam Weinig.
+
+        * html/canvas/WebGLRenderingContextBase.cpp:
+        (WebCore::WebGLRenderingContextBase::create):
+        * page/Settings.in:
+
 2017-01-24  Miguel Gomez  <mago...@igalia.com>
 
         [GTK] Do not paint non composited content into the window when using the threaded compositor

Modified: trunk/Source/WebCore/html/canvas/WebGLRenderingContextBase.cpp (211084 => 211085)


--- trunk/Source/WebCore/html/canvas/WebGLRenderingContextBase.cpp	2017-01-24 16:25:31 UTC (rev 211084)
+++ trunk/Source/WebCore/html/canvas/WebGLRenderingContextBase.cpp	2017-01-24 17:01:44 UTC (rev 211085)
@@ -388,11 +388,6 @@
         }
     }
 
-    if (attributes.antialias) {
-        if (!frame->settings().openGLMultisamplingEnabled())
-            attributes.antialias = false;
-    }
-
     attributes.noExtensions = true;
     attributes.shareResources = false;
 

Modified: trunk/Source/WebCore/page/Settings.in (211084 => 211085)


--- trunk/Source/WebCore/page/Settings.in	2017-01-24 16:25:31 UTC (rev 211084)
+++ trunk/Source/WebCore/page/Settings.in	2017-01-24 17:01:44 UTC (rev 211085)
@@ -106,7 +106,6 @@
 experimentalNotificationsEnabled initial=false
 webGLEnabled initial=false
 webGLErrorsToConsoleEnabled initial=true
-openGLMultisamplingEnabled initial=true
 forceSoftwareWebGLRendering initial=false
 preferLowPowerWebGLRendering initial=true
 accelerated2dCanvasEnabled initial=false
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to