Skip to content

https://github.com/microsoft/TypeScript/issues/39655 #895

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions inputfiles/idl/WebGL WEBGL_compressed_texture_atc.widl
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[NoInterfaceObject]
interface WEBGL_compressed_texture_atc {
/* Compressed Texture Format */
const GLenum COMPRESSED_RGB_ATC_WEBGL = 0x8C92;
const GLenum COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL = 0x8C92; // TODO: Is this a bug on the MDN site?
const GLenum COMPRESSED_RGBA_ATC_INTERPOLATED_ALPHA_WEBGL = 0x87EE;
};
5 changes: 5 additions & 0 deletions inputfiles/idl/WebGL WEBGL_compressed_texture_etc1.widl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[NoInterfaceObject]
interface WEBGL_compressed_texture_etc1 {
/* Compressed Texture Format */
const GLenum COMPRESSED_RGB_ETC1_WEBGL = 0x8D64;
};
8 changes: 8 additions & 0 deletions inputfiles/idl/WebGL WEBGL_compressed_texture_pvrtc.widl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[NoInterfaceObject]
interface WEBGL_compressed_texture_pvrtc {
/* Compressed Texture Formats */
const GLenum COMPRESSED_RGB_PVRTC_4BPPV1_IMG = 0x8C00;
const GLenum COMPRESSED_RGBA_PVRTC_4BPPV1_IMG = 0x8C02;
const GLenum COMPRESSED_RGB_PVRTC_2BPPV1_IMG = 0x8C01;
const GLenum COMPRESSED_RGBA_PVRTC_2BPPV1_IMG = 0x8C03;
};
12 changes: 12 additions & 0 deletions inputfiles/idlSources.json
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,18 @@
"url": "https://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_s3tc_srgb/",
"title": "WebGL WEBGL_compressed_texture_s3tc_srgb"
},
{
"url": "https://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_pvrtc/",
"title": "WebGL WEBGL_compressed_texture_pvrtc"
},
{
"url": "https://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_etc1/",
"title": "WebGL WEBGL_compressed_texture_etc1"
},
{
"url": "https://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_atc/",
"title": "WebGL WEBGL_compressed_texture_atc"
},
{
"url": "https://www.khronos.org/registry/webgl/extensions/WEBGL_debug_renderer_info/",
"title": "WebGL WEBGL_debug_renderer_info"
Expand Down