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
6 changes: 6 additions & 0 deletions types/three/src/constants.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,12 @@ export const RGBA_ASTC_12x12_Format: CompressedPixelFormat;
// BPTC compressed texture formats
export const RGBA_BPTC_Format: CompressedPixelFormat;

// RGTC compressed texture formats
export const RED_RGTC1_Format: CompressedPixelFormat;
export const SIGNED_RED_RGTC1_Format: CompressedPixelFormat;
export const RED_GREEN_RGTC2_Format: CompressedPixelFormat;
export const SIGNED_RED_GREEN_RGTC2_Format: CompressedPixelFormat;

// Loop styles for AnimationAction
export enum AnimationActionLoopStyles {}
export const LoopOnce: AnimationActionLoopStyles;
Expand Down