mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 18:29:39 +02:00
18 lines
355 B
TypeScript
18 lines
355 B
TypeScript
import {
|
|
DataTexture,
|
|
DataTexture3D,
|
|
} from '../../../src/Three';
|
|
import { ShaderPass } from './ShaderPass';
|
|
|
|
export interface LUTPassParameters {
|
|
lut?: DataTexture | DataTexture3D;
|
|
intensity?: number;
|
|
}
|
|
|
|
export class LUTPass extends ShaderPass {
|
|
|
|
lut?: DataTexture | DataTexture3D;
|
|
intensity?: number;
|
|
constructor( params: LUTPassParameters );
|
|
|
|
}
|