Changeset 101060 in webkit


Ignore:
Timestamp:
Nov 23, 2011 2:35:16 AM (12 years ago)
Author:
Martin Robinson
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.
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r101052 r101060  
     12011-10-08  Martin Robinson  <mrobinson@igalia.com>
     2
     3        [GTK] Enable WebGL by default
     4        https://bugs.webkit.org/show_bug.cgi?id=69706
     5
     6        Reviewed by Xan Lopez.
     7
     8        * configure.ac: Enable WebGL by default if the build target is X11.
     9
    1102011-11-23  Raphael Kubo da Costa  <kubo@profusion.mobi>
    211
  • trunk/LayoutTests/ChangeLog

    r101057 r101060  
     12011-10-08  Martin Robinson  <mrobinson@igalia.com>
     2
     3        [GTK] Enable WebGL by default
     4        https://bugs.webkit.org/show_bug.cgi?id=69706
     5
     6        Reviewed by Xan Lopez.
     7
     8        * platform/gtk/Skipped: Skip all WebGL tests until we can ensure they
     9        run properly on the bots.
     10        * platform/platform/gtk-wk2/Skipped: Ditto.
     11
    1122011-11-23  Anna Cavender  <annacc@chromium.org>
    213
  • trunk/LayoutTests/platform/gtk-wk2/Skipped

    r100755 r101060  
    364364http/tests/navigation/ping-cookie.html
    365365
     366# The GTK+ build bots don't yet have the muscle to run WebGL tests.
     367compositing/webgl
     368fast/canvas/webgl
     369http/tests/canvas/webgl
     370http/tests/security/webgl-remote-read-remote-image-allowed.html
     371http/tests/security/webgl-remote-read-remote-image-blocked-no-crossorigin.html
     372http/tests/security/webgl-remote-read-remote-image-allowed-with-credentials.html
     373
    366374###############################################################################
    367375# TESTS FAILING
  • trunk/LayoutTests/platform/gtk/Skipped

    r101053 r101060  
    372372# supported.
    373373fast/text/international/locale-sensitive-fonts.html
     374
     375# The GTK+ build bots don't yet have the muscle to run WebGL tests.
     376compositing/webgl
     377fast/canvas/webgl
     378http/tests/canvas/webgl
     379http/tests/security/webgl-remote-read-remote-image-allowed.html
     380http/tests/security/webgl-remote-read-remote-image-blocked-no-crossorigin.html
     381http/tests/security/webgl-remote-read-remote-image-allowed-with-credentials.html
    374382
    375383###############################################################################
  • trunk/configure.ac

    r100898 r101060  
    383383AC_MSG_CHECKING([whether to enable WebGL support])
    384384AC_ARG_ENABLE(webgl,
    385               AC_HELP_STRING([--enable-webgl],
    386                              [enable support for WebGL (experimental) [default=no]]),
    387               [], [enable_webgl="no"])
     385              AC_HELP_STRING([--enable-webgl], [enable support for WebGL [default=yes]]),
     386              [], [if test "$with_target" = "x11"; then enable_webgl="yes"; else enable_webgl="no"; fi])
    388387AC_MSG_RESULT([$enable_webgl])
    389388
Note: See TracChangeset for help on using the changeset viewer.