Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions types/three/src/Three.TSL.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ export const pow: typeof TSL.pow;
export const pow2: typeof TSL.pow2;
export const pow3: typeof TSL.pow3;
export const pow4: typeof TSL.pow4;
export const premult: typeof TSL.premult;
export const premultiplyAlpha: typeof TSL.premultiplyAlpha;
export const property: typeof TSL.property;
export const radians: typeof TSL.radians;
export const rand: typeof TSL.rand;
Expand Down Expand Up @@ -511,7 +511,7 @@ export const uniformArray: typeof TSL.uniformArray;
export const uniformGroup: typeof TSL.uniformGroup;
export const uniformTexture: typeof TSL.uniformTexture;
export const uniforms: typeof TSL.uniforms;
export const unpremult: typeof TSL.unpremult;
export const unpremultiplyAlpha: typeof TSL.unpremultiplyAlpha;
export const userData: typeof TSL.userData;
export const uv: typeof TSL.uv;
export const uvec2: typeof TSL.uvec2;
Expand Down
4 changes: 2 additions & 2 deletions types/three/src/nodes/display/BlendModes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export const blendOverlay: (base: NodeRepresentation, blend: NodeRepresentation)

export const blendColor: (base: NodeRepresentation, blend: NodeRepresentation) => ShaderNodeObject<Node>;

export const premult: (color: NodeRepresentation) => ShaderNodeObject<Node>;
export const premultiplyAlpha: (color: NodeRepresentation) => ShaderNodeObject<Node>;

export const unpremult: (color: NodeRepresentation) => ShaderNodeObject<Node>;
export const unpremultiplyAlpha: (color: NodeRepresentation) => ShaderNodeObject<Node>;

/**
* @deprecated
Expand Down
Loading