Changeset 223743 in webkit


Ignore:
Timestamp:
Oct 19, 2017 11:17:38 PM (7 years ago)
Author:
Ms2ger@igalia.com
Message:

Remove proprietary constants from WebGL2RenderingContext.
https://bugs.webkit.org/show_bug.cgi?id=178511

Reviewed by Ryosuke Niwa.

As far as I can tell, these constants are not in the specification,
and no other browser supports them.

No new tests: just code removal.

  • html/canvas/WebGL2RenderingContext.idl:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r223742 r223743  
     12017-10-19  Ms2ger  <Ms2ger@igalia.com>
     2
     3        Remove proprietary constants from WebGL2RenderingContext.
     4        https://bugs.webkit.org/show_bug.cgi?id=178511
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        As far as I can tell, these constants are not in the specification,
     9        and no other browser supports them.
     10
     11        No new tests: just code removal.
     12
     13        * html/canvas/WebGL2RenderingContext.idl:
     14
    1152017-10-19  Zalan Bujtas  <zalan@apple.com>
    216
  • trunk/Source/WebCore/html/canvas/WebGL2RenderingContext.idl

    r223683 r223743  
    258258    const GLenum RGBA8_SNORM                                   = 0x8F97;
    259259    const GLenum SIGNED_NORMALIZED                             = 0x8F9C;
    260     const GLenum PRIMITIVE_RESTART_FIXED_INDEX                 = 0x8D69;
    261260    const GLenum COPY_READ_BUFFER                              = 0x8F36;
    262261    const GLenum COPY_WRITE_BUFFER                             = 0x8F37;
     
    311310    const GLenum SAMPLER_BINDING                               = 0x8919;
    312311    const GLenum RGB10_A2UI                                    = 0x906F;
    313     const GLenum TEXTURE_SWIZZLE_R                             = 0x8E42;
    314     const GLenum TEXTURE_SWIZZLE_G                             = 0x8E43;
    315     const GLenum TEXTURE_SWIZZLE_B                             = 0x8E44;
    316     const GLenum TEXTURE_SWIZZLE_A                             = 0x8E45;
    317     const GLenum GREEN                                         = 0x1904;
    318     const GLenum BLUE                                          = 0x1905;
    319312    const GLenum INT_2_10_10_10_REV                            = 0x8D9F;
    320313    const GLenum TRANSFORM_FEEDBACK                            = 0x8E22;
     
    322315    const GLenum TRANSFORM_FEEDBACK_ACTIVE                     = 0x8E24;
    323316    const GLenum TRANSFORM_FEEDBACK_BINDING                    = 0x8E25;
    324     const GLenum COMPRESSED_R11_EAC                            = 0x9270;
    325     const GLenum COMPRESSED_SIGNED_R11_EAC                     = 0x9271;
    326     const GLenum COMPRESSED_RG11_EAC                           = 0x9272;
    327     const GLenum COMPRESSED_SIGNED_RG11_EAC                    = 0x9273;
    328     const GLenum COMPRESSED_RGB8_ETC2                          = 0x9274;
    329     const GLenum COMPRESSED_SRGB8_ETC2                         = 0x9275;
    330     const GLenum COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2      = 0x9276;
    331     const GLenum COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2     = 0x9277;
    332     const GLenum COMPRESSED_RGBA8_ETC2_EAC                     = 0x9278;
    333     const GLenum COMPRESSED_SRGB8_ALPHA8_ETC2_EAC              = 0x9279;
    334317    const GLenum TEXTURE_IMMUTABLE_FORMAT                      = 0x912F;
    335318    const GLenum MAX_ELEMENT_INDEX                             = 0x8D6B;
    336     const GLenum NUM_SAMPLE_COUNTS                             = 0x9380;
    337319    const GLenum TEXTURE_IMMUTABLE_LEVELS                      = 0x82DF;
    338     const GLenum VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE             = 0x88FE;
    339320
    340321    const GLint64 TIMEOUT_IGNORED                              = -1;
Note: See TracChangeset for help on using the changeset viewer.