From ebc8707e524312a394b2e723564be1a86a9f2d9a Mon Sep 17 00:00:00 2001 From: Thomas Chandelle Date: Fri, 8 Mar 2024 09:23:53 +0100 Subject: [PATCH] Update constants RGBAFormat --- types/three/src/constants.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/three/src/constants.d.ts b/types/three/src/constants.d.ts index 63343d9a9..044365118 100644 --- a/types/three/src/constants.d.ts +++ b/types/three/src/constants.d.ts @@ -364,7 +364,7 @@ export type TextureDataType = /** {@link AlphaFormat} discards the red, green and blue components and reads just the alpha component. */ export const AlphaFormat: 1021; -/** {@link RGBAFormat} discards the green and blue components and reads just the red component. (Can only be used with a WebGL 2 rendering context). */ +/** {@link RGBAFormat} is the default and reads the red, green, blue and alpha components. */ export const RGBAFormat: 1023; /**