Initial project import

This commit is contained in:
drjones
2026-06-13 17:36:44 -07:00
commit ad2a18cc8d
18471 changed files with 4497570 additions and 0 deletions

25
node_modules/three-stdlib/shaders/SAOShader.d.ts generated vendored Normal file
View File

@@ -0,0 +1,25 @@
import { Matrix4, Vector2 } from 'three';
import type { IUniform, Texture } from 'three';
import type { IShader } from './types';
export type SAOShaderDefines = Record<'DEPTH_PACKING' | 'DIFFUSE_TEXTURE' | 'NORMAL_TEXTURE' | 'NUM_RINGS' | 'NUM_SAMPLES' | 'PERSPECTIVE_CAMERA', number>;
export type SAOShaderUniforms = {
bias: IUniform<number>;
cameraFar: IUniform<number>;
cameraInverseProjectionMatrix: IUniform<Matrix4>;
cameraNear: IUniform<number>;
cameraProjectionMatrix: IUniform<Matrix4>;
intensity: IUniform<number>;
kernelRadius: IUniform<number>;
minResolution: IUniform<number>;
randomSeed: IUniform<number>;
scale: IUniform<number>;
size: IUniform<Vector2>;
tDepth: IUniform<Texture | null>;
tDiffuse: IUniform<Texture | null>;
tNormal: IUniform<Texture | null>;
};
export interface ISAOShader extends IShader<SAOShaderUniforms, SAOShaderDefines> {
defines: SAOShaderDefines;
needsUpdate?: boolean;
}
export declare const SAOShader: ISAOShader;