2
0

DOFMipMapShader.d.ts 224 B

1234567891011121314
  1. import {
  2. Uniform
  3. } from '../../../src/Three';
  4. export const DOFMipMapShader: {
  5. uniforms: {
  6. tColor: Uniform;
  7. tDepth: Uniform;
  8. focus: Uniform;
  9. maxblur: Uniform;
  10. };
  11. vertexShader: string;
  12. fragmentShader: string;
  13. };