Skip to content
Merged
Changes from all commits
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
9 changes: 9 additions & 0 deletions types/three/src/constants.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,11 @@ export const RGB_ETC2_Format: 37492;
*/
export const RGBA_ETC2_EAC_Format: 37496;

export const R11_EAC_Format: 37488;
export const SIGNED_R11_EAC_Format: 37489;
export const RG11_EAC_Format: 37490;
export const SIGNED_RG11_EAC_Format: 37491;

// ASTC compressed texture formats

/**
Expand Down Expand Up @@ -598,6 +603,10 @@ export type CompressedPixelFormat =
| typeof RGB_ETC1_Format
| typeof RGB_ETC2_Format
| typeof RGBA_ETC2_EAC_Format
| typeof R11_EAC_Format
| typeof SIGNED_R11_EAC_Format
| typeof RG11_EAC_Format
| typeof SIGNED_RG11_EAC_Format
| typeof RGBA_ASTC_4x4_Format
| typeof RGBA_ASTC_5x4_Format
| typeof RGBA_ASTC_5x5_Format
Expand Down
Loading