Skip to content

Commit 4cd542f

Browse files
committed
https://github.com/microsoft/TypeScript/issues/39655
1 parent bf671e9 commit 4cd542f

File tree

4 files changed

+32
-0
lines changed

4 files changed

+32
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[NoInterfaceObject]
2+
interface WEBGL_compressed_texture_atc {
3+
/* Compressed Texture Format */
4+
const GLenum COMPRESSED_RGB_ATC_WEBGL = 0x8C92;
5+
const GLenum COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL = 0x8C92; // TODO: Is this a bug on the MDN site?
6+
const GLenum COMPRESSED_RGBA_ATC_INTERPOLATED_ALPHA_WEBGL = 0x87EE;
7+
};
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[NoInterfaceObject]
2+
interface WEBGL_compressed_texture_etc1 {
3+
/* Compressed Texture Format */
4+
const GLenum COMPRESSED_RGB_ETC1_WEBGL = 0x8D64;
5+
};
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[NoInterfaceObject]
2+
interface WEBGL_compressed_texture_pvrtc {
3+
/* Compressed Texture Formats */
4+
const GLenum COMPRESSED_RGB_PVRTC_4BPPV1_IMG = 0x8C00;
5+
const GLenum COMPRESSED_RGBA_PVRTC_4BPPV1_IMG = 0x8C02;
6+
const GLenum COMPRESSED_RGB_PVRTC_2BPPV1_IMG = 0x8C01;
7+
const GLenum COMPRESSED_RGBA_PVRTC_2BPPV1_IMG = 0x8C03;
8+
};

inputfiles/idlSources.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -615,6 +615,18 @@
615615
"url": "https://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_s3tc_srgb/",
616616
"title": "WebGL WEBGL_compressed_texture_s3tc_srgb"
617617
},
618+
{
619+
"url": "https://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_pvrtc/",
620+
"title": "WebGL WEBGL_compressed_texture_pvrtc"
621+
},
622+
{
623+
"url": "https://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_etc1/",
624+
"title": "WebGL WEBGL_compressed_texture_etc1"
625+
},
626+
{
627+
"url": "https://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_atc/",
628+
"title": "WebGL WEBGL_compressed_texture_atc"
629+
},
618630
{
619631
"url": "https://www.khronos.org/registry/webgl/extensions/WEBGL_debug_renderer_info/",
620632
"title": "WebGL WEBGL_debug_renderer_info"

0 commit comments

Comments
 (0)