Skip to content

Commit 46966d1

Browse files
author
Orta Therox
authored
Merge pull request #989 from microsoft/SukantPal-master
Deprecate 895
2 parents 1776cdd + 30828cb commit 46966d1

5 files changed

+43
-0
lines changed

baselines/dom.generated.d.ts

+11
Original file line numberDiff line numberDiff line change
@@ -16042,6 +16042,17 @@ interface WEBGL_compressed_texture_astc {
1604216042
readonly COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR: GLenum;
1604316043
}
1604416044

16045+
interface WEBGL_compressed_texture_etc1 {
16046+
readonly COMPRESSED_RGB_ETC1_WEBGL: GLenum;
16047+
}
16048+
16049+
interface WEBGL_compressed_texture_pvrtc {
16050+
readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: GLenum;
16051+
readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: GLenum;
16052+
readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: GLenum;
16053+
readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: GLenum;
16054+
}
16055+
1604516056
/** The WEBGL_compressed_texture_s3tc extension is part of the WebGL API and exposes four S3TC compressed texture formats. */
1604616057
interface WEBGL_compressed_texture_s3tc {
1604716058
readonly COMPRESSED_RGBA_S3TC_DXT1_EXT: GLenum;

baselines/webworker.generated.d.ts

+11
Original file line numberDiff line numberDiff line change
@@ -3291,6 +3291,17 @@ interface WEBGL_compressed_texture_astc {
32913291
readonly COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR: GLenum;
32923292
}
32933293

3294+
interface WEBGL_compressed_texture_etc1 {
3295+
readonly COMPRESSED_RGB_ETC1_WEBGL: GLenum;
3296+
}
3297+
3298+
interface WEBGL_compressed_texture_pvrtc {
3299+
readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: GLenum;
3300+
readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: GLenum;
3301+
readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: GLenum;
3302+
readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: GLenum;
3303+
}
3304+
32943305
/** The WEBGL_compressed_texture_s3tc extension is part of the WebGL API and exposes four S3TC compressed texture formats. */
32953306
interface WEBGL_compressed_texture_s3tc {
32963307
readonly COMPRESSED_RGBA_S3TC_DXT1_EXT: GLenum;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[Exposed=(Window,Worker), LegacyNoInterfaceObject]
2+
interface WEBGL_compressed_texture_etc1 {
3+
/* Compressed Texture Format */
4+
const GLenum COMPRESSED_RGB_ETC1_WEBGL = 0x8D64;
5+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[Exposed=(Window,Worker), LegacyNoInterfaceObject]
2+
interface WEBGL_compressed_texture_pvrtc {
3+
/* Compressed Texture Formats */
4+
const GLenum COMPRESSED_RGB_PVRTC_4BPPV1_IMG = 0x8C00;
5+
const GLenum COMPRESSED_RGB_PVRTC_2BPPV1_IMG = 0x8C01;
6+
const GLenum COMPRESSED_RGBA_PVRTC_4BPPV1_IMG = 0x8C02;
7+
const GLenum COMPRESSED_RGBA_PVRTC_2BPPV1_IMG = 0x8C03;
8+
};

inputfiles/idlSources.json

+8
Original file line numberDiff line numberDiff line change
@@ -626,6 +626,14 @@
626626
"url": "https://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_s3tc_srgb/",
627627
"title": "WebGL WEBGL_compressed_texture_s3tc_srgb"
628628
},
629+
{
630+
"url": "https://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_pvrtc/",
631+
"title": "WebGL WEBGL_compressed_texture_pvrtc"
632+
},
633+
{
634+
"url": "https://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_etc1/",
635+
"title": "WebGL WEBGL_compressed_texture_etc1"
636+
},
629637
{
630638
"url": "https://www.khronos.org/registry/webgl/extensions/WEBGL_debug_renderer_info/",
631639
"title": "WebGL WEBGL_debug_renderer_info"

0 commit comments

Comments
 (0)