Title: [219286] trunk/Tools
Revision
219286
Author
zandober...@gmail.com
Date
2017-07-09 22:58:57 -0700 (Sun, 09 Jul 2017)

Log Message

Add WebGL2 configuration option to build-webkit
https://bugs.webkit.org/show_bug.cgi?id=174251

Reviewed by Michael Catanzaro.

* Scripts/webkitperl/FeatureList.pm: Add the 'webgl2' option, making it possible
to enable the ENABLE_WEBGL2 flag through the build-webkit script. The feature
is marked as enabled for the Apple Cocoa ports.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (219285 => 219286)


--- trunk/Tools/ChangeLog	2017-07-10 02:34:55 UTC (rev 219285)
+++ trunk/Tools/ChangeLog	2017-07-10 05:58:57 UTC (rev 219286)
@@ -1,3 +1,14 @@
+2017-07-09  Zan Dobersek  <zdober...@igalia.com>
+
+        Add WebGL2 configuration option to build-webkit
+        https://bugs.webkit.org/show_bug.cgi?id=174251
+
+        Reviewed by Michael Catanzaro.
+
+        * Scripts/webkitperl/FeatureList.pm: Add the 'webgl2' option, making it possible
+        to enable the ENABLE_WEBGL2 flag through the build-webkit script. The feature
+        is marked as enabled for the Apple Cocoa ports.
+
 2017-07-08  Chris Dumez  <cdu...@apple.com>
 
         Simplify WebResourceLoadStatisticsStore / ResourceLoadStatisticsStore

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (219285 => 219286)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2017-07-10 02:34:55 UTC (rev 219285)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2017-07-10 05:58:57 UTC (rev 219286)
@@ -139,6 +139,7 @@
     $webTimingSupport,
     $writableStreamAPISupport,
     $webglSupport,
+    $webgl2Support,
     $xsltSupport,
 );
 
@@ -400,6 +401,9 @@
     { option => "webgl", desc => "Toggle WebGL support",
       define => "ENABLE_WEBGL", default => (isAppleCocoaWebKit() || isGtk() || isWPE()), value => \$webglSupport },
 
+    { option => "webgl2", desc => "Toggle WebGL2 support",
+      define => "ENABLE_WEBGL2", default => isAppleCocoaWebKit(), value => \$webgl2Support },
+
     { option => "writableStreamAPI", desc => "Toggle WritableStream API support",
       define => "ENABLE_WRITABLE_STREAM_API", default => 1, value => \$writableStreamAPISupport },
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to