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
1 change: 1 addition & 0 deletions types/three/src/Three.TSL.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ export const getDirection: typeof TSL.getDirection;
export const getDistanceAttenuation: typeof TSL.getDistanceAttenuation;
export const getGeometryRoughness: typeof TSL.getGeometryRoughness;
export const getNormalFromDepth: typeof TSL.getNormalFromDepth;
export const interleavedGradientNoise: typeof TSL.interleavedGradientNoise;
export const getParallaxCorrectNormal: typeof TSL.getParallaxCorrectNormal;
export const getRoughness: typeof TSL.getRoughness;
export const getScreenPosition: typeof TSL.getScreenPosition;
Expand Down
2 changes: 2 additions & 0 deletions types/three/src/nodes/utils/PostProcessingUtils.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,5 @@ export const getNormalFromDepth: (
depthTexture: Node,
projectionMatrixInverse: Node,
) => Node;

export const interleavedGradientNoise: (position: Node) => Node;
Loading