Bug 149765 - EXT_texture_filter_anisotropic extension exposed with WEBKIT_ prefix
Summary: EXT_texture_filter_anisotropic extension exposed with WEBKIT_ prefix
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebGL (show other bugs)
Version: WebKit Nightly Build
Hardware: All All
: P2 Normal
Assignee: Dean Jackson
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2015-10-02 15:12 PDT by Kenneth Russell
Modified: 2015-10-05 18:06 PDT (History)
7 users (show)

See Also:


Attachments
Patch (6.83 KB, patch)
2015-10-05 18:00 PDT, Dean Jackson
bdakin: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Kenneth Russell 2015-10-02 15:12:43 PDT
The WebGL extension EXT_texture_filter_anisotropic is being exposed in Safari with the name "WEBKIT_EXT_texture_filter_anisotropic". Since this extension's been approved in the extension registry for some time now, the prefix should be removed. See https://www.khronos.org/registry/webgl/extensions/ .

To reproduce:

> c = document.createElement('canvas')
< <canvas>​

> gl = c.getContext('webgl')
< WebGLRenderingContext

> gl.getSupportedExtensions()
< ["OES_texture_float", "OES_texture_float_linear", "OES_texture_half_float", "OES_texture_half_float_linear", "OES_standard_derivatives", "EXT_shader_texture_lod", "WEBKIT_EXT_texture_filter_anisotropic", "OES_vertex_array_object", "OES_element_index_uint", "WEBGL_lose_context", "WEBGL_compressed_texture_s3tc", "WEBGL_depth_texture", "ANGLE_instanced_arrays"]
Comment 1 Radar WebKit Bug Importer 2015-10-05 17:51:15 PDT
<rdar://problem/22983722>
Comment 2 Dean Jackson 2015-10-05 18:00:24 PDT
Created attachment 262485 [details]
Patch
Comment 3 Dean Jackson 2015-10-05 18:06:56 PDT
Committed r190595: <http://trac.webkit.org/changeset/190595>