Title: [101060] trunk
- Revision
- 101060
- Author
- [email protected]
- Date
- 2011-11-23 02:35:16 -0800 (Wed, 23 Nov 2011)
Log Message
[GTK] Enable WebGL by default
https://bugs.webkit.org/show_bug.cgi?id=69706
Reviewed by Xan Lopez.
.:
* configure.ac: Enable WebGL by default if the build target is X11.
LayoutTests:
* platform/gtk/Skipped: Skip all WebGL tests until we can ensure they
run properly on the bots.
* platform/platform/gtk-wk2/Skipped: Ditto.
Modified Paths
Diff
Modified: trunk/ChangeLog (101059 => 101060)
--- trunk/ChangeLog 2011-11-23 10:10:29 UTC (rev 101059)
+++ trunk/ChangeLog 2011-11-23 10:35:16 UTC (rev 101060)
@@ -1,3 +1,12 @@
+2011-10-08 Martin Robinson <[email protected]>
+
+ [GTK] Enable WebGL by default
+ https://bugs.webkit.org/show_bug.cgi?id=69706
+
+ Reviewed by Xan Lopez.
+
+ * configure.ac: Enable WebGL by default if the build target is X11.
+
2011-11-23 Raphael Kubo da Costa <[email protected]>
[CMake] Move the top-level logic to the top-level directory.
Modified: trunk/LayoutTests/ChangeLog (101059 => 101060)
--- trunk/LayoutTests/ChangeLog 2011-11-23 10:10:29 UTC (rev 101059)
+++ trunk/LayoutTests/ChangeLog 2011-11-23 10:35:16 UTC (rev 101060)
@@ -1,3 +1,14 @@
+2011-10-08 Martin Robinson <[email protected]>
+
+ [GTK] Enable WebGL by default
+ https://bugs.webkit.org/show_bug.cgi?id=69706
+
+ Reviewed by Xan Lopez.
+
+ * platform/gtk/Skipped: Skip all WebGL tests until we can ensure they
+ run properly on the bots.
+ * platform/platform/gtk-wk2/Skipped: Ditto.
+
2011-11-23 Anna Cavender <[email protected]>
Move readyState from TextTrack to HTMLTrackElement
Modified: trunk/LayoutTests/platform/gtk/Skipped (101059 => 101060)
--- trunk/LayoutTests/platform/gtk/Skipped 2011-11-23 10:10:29 UTC (rev 101059)
+++ trunk/LayoutTests/platform/gtk/Skipped 2011-11-23 10:35:16 UTC (rev 101060)
@@ -372,6 +372,14 @@
# supported.
fast/text/international/locale-sensitive-fonts.html
+# The GTK+ build bots don't yet have the muscle to run WebGL tests.
+compositing/webgl
+fast/canvas/webgl
+http/tests/canvas/webgl
+http/tests/security/webgl-remote-read-remote-image-allowed.html
+http/tests/security/webgl-remote-read-remote-image-blocked-no-crossorigin.html
+http/tests/security/webgl-remote-read-remote-image-allowed-with-credentials.html
+
###############################################################################
# TESTS FAILING
###############################################################################
Modified: trunk/LayoutTests/platform/gtk-wk2/Skipped (101059 => 101060)
--- trunk/LayoutTests/platform/gtk-wk2/Skipped 2011-11-23 10:10:29 UTC (rev 101059)
+++ trunk/LayoutTests/platform/gtk-wk2/Skipped 2011-11-23 10:35:16 UTC (rev 101060)
@@ -363,6 +363,14 @@
http/tests/navigation/ping-cross-origin.html
http/tests/navigation/ping-cookie.html
+# The GTK+ build bots don't yet have the muscle to run WebGL tests.
+compositing/webgl
+fast/canvas/webgl
+http/tests/canvas/webgl
+http/tests/security/webgl-remote-read-remote-image-allowed.html
+http/tests/security/webgl-remote-read-remote-image-blocked-no-crossorigin.html
+http/tests/security/webgl-remote-read-remote-image-allowed-with-credentials.html
+
###############################################################################
# TESTS FAILING
###############################################################################
Modified: trunk/configure.ac (101059 => 101060)
--- trunk/configure.ac 2011-11-23 10:10:29 UTC (rev 101059)
+++ trunk/configure.ac 2011-11-23 10:35:16 UTC (rev 101060)
@@ -382,9 +382,8 @@
# check whether to enable WebGL support
AC_MSG_CHECKING([whether to enable WebGL support])
AC_ARG_ENABLE(webgl,
- AC_HELP_STRING([--enable-webgl],
- [enable support for WebGL (experimental) [default=no]]),
- [], [enable_webgl="no"])
+ AC_HELP_STRING([--enable-webgl], [enable support for WebGL [default=yes]]),
+ [], [if test "$with_target" = "x11"; then enable_webgl="yes"; else enable_webgl="no"; fi])
AC_MSG_RESULT([$enable_webgl])
if test "$enable_webgl" = "yes"; then
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes