Title: [116310] trunk/Tools
Revision
116310
Author
[email protected]
Date
2012-05-07 08:01:31 -0700 (Mon, 07 May 2012)

Log Message

[Gtk] WebGL feature is not built anymore through build-webkit after r116251
https://bugs.webkit.org/show_bug.cgi?id=85788

Reviewed by Martin Robinson.

Enable WebGL by default for the Gtk port. The feature is already enabled by
default in configure.ac, so there's no reason it shouldn't be enabled when
building through build-webkit.

* Scripts/webkitperl/FeatureList.pm:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (116309 => 116310)


--- trunk/Tools/ChangeLog	2012-05-07 14:46:26 UTC (rev 116309)
+++ trunk/Tools/ChangeLog	2012-05-07 15:01:31 UTC (rev 116310)
@@ -1,3 +1,16 @@
+2012-05-07  Zan Dobersek  <[email protected]>
+
+        [Gtk] WebGL feature is not built anymore through build-webkit after r116251
+        https://bugs.webkit.org/show_bug.cgi?id=85788
+
+        Reviewed by Martin Robinson.
+
+        Enable WebGL by default for the Gtk port. The feature is already enabled by
+        default in configure.ac, so there's no reason it shouldn't be enabled when
+        building through build-webkit.
+
+        * Scripts/webkitperl/FeatureList.pm:
+
 2012-05-07  Csaba Osztrogonác  <[email protected]>
 
         Unittest fix after r116288, because now there are more than 5 hit for the 'Eric' word.

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (116309 => 116310)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2012-05-07 14:46:26 UTC (rev 116309)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2012-05-07 15:01:31 UTC (rev 116310)
@@ -333,7 +333,7 @@
       define => "ENABLE_VIDEO_TRACK", default => (isAppleWebKit() || isGtk() || isEfl()), value => \$videoTrackSupport },
 
     { option => "webgl", desc => "Toggle WebGL support",
-      define => "ENABLE_WEBGL", default => isAppleMacWebKit(), value => \$webglSupport },
+      define => "ENABLE_WEBGL", default => (isAppleMacWebKit() || isGtk()), value => \$webglSupport },
 
     { option => "web-audio", desc => "Toggle Web Audio support",
       define => "ENABLE_WEB_AUDIO", default => 0, value => \$webAudioSupport },
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to