@types/three
Version:
TypeScript definitions for three
18 lines (10 loc) • 376 B
TypeScript
import { Node, TempNode, TextureNode } from "three/webgpu";
declare class SMAANode extends TempNode {
textureNode: TextureNode;
constructor(textureNode: TextureNode);
getTextureNode(): TextureNode;
setSize(width: number, height: number): void;
getAreaTexture(): string;
getSearchTexture(): string;
}
export const smaa: (node: Node) => SMAANode;