Changeset 219286 in webkit


Ignore:
Timestamp:
Jul 9, 2017 10:58:57 PM (7 years ago)
Author:
zandobersek@gmail.com
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.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r219277 r219286  
     12017-07-09  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Add WebGL2 configuration option to build-webkit
     4        https://bugs.webkit.org/show_bug.cgi?id=174251
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * Scripts/webkitperl/FeatureList.pm: Add the 'webgl2' option, making it possible
     9        to enable the ENABLE_WEBGL2 flag through the build-webkit script. The feature
     10        is marked as enabled for the Apple Cocoa ports.
     11
    1122017-07-08  Chris Dumez  <cdumez@apple.com>
    213
  • trunk/Tools/Scripts/webkitperl/FeatureList.pm

    r219276 r219286  
    140140    $writableStreamAPISupport,
    141141    $webglSupport,
     142    $webgl2Support,
    142143    $xsltSupport,
    143144);
     
    400401    { option => "webgl", desc => "Toggle WebGL support",
    401402      define => "ENABLE_WEBGL", default => (isAppleCocoaWebKit() || isGtk() || isWPE()), value => \$webglSupport },
     403
     404    { option => "webgl2", desc => "Toggle WebGL2 support",
     405      define => "ENABLE_WEBGL2", default => isAppleCocoaWebKit(), value => \$webgl2Support },
    402406
    403407    { option => "writableStreamAPI", desc => "Toggle WritableStream API support",
Note: See TracChangeset for help on using the changeset viewer.