123456789101112131415161718192021222324 |
- import {
- PixelFormat,
- Texture,
- TextureDataType,
- WebGLRenderer
- } from '../../../src/Three';
- export interface EquirectangularToCubeGeneratorOptions {
- resolution?: number;
- format?: PixelFormat;
- type?: TextureDataType;
- }
- export class EquirectangularToCubeGenerator {
- constructor( sourceTexture: Texture, options?: EquirectangularToCubeGeneratorOptions );
- sourceTexture: Texture;
- resolution: number;
- renderTarget: WebGLRenderTargetCube;
- dispose(): void;
- update( renderer: WebGLRenderer ): Texture;
- }
|