Skip to content

Commit 30828cb

Browse files
author
Your Name
committed
Update baselines
1 parent 923d7a2 commit 30828cb

4 files changed

+31
-9
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
@@ -1,5 +1,5 @@
1-
[NoInterfaceObject]
1+
[Exposed=(Window,Worker), LegacyNoInterfaceObject]
22
interface WEBGL_compressed_texture_etc1 {
33
/* Compressed Texture Format */
4-
const GLenum COMPRESSED_RGB_ETC1_WEBGL = 0x8D64;
5-
};
4+
const GLenum COMPRESSED_RGB_ETC1_WEBGL = 0x8D64;
5+
};
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
[NoInterfaceObject]
1+
[Exposed=(Window,Worker), LegacyNoInterfaceObject]
22
interface WEBGL_compressed_texture_pvrtc {
33
/* 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-
};
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+
};

0 commit comments

Comments
 (0)