| 1234567891011121314151617181920212223 |
- import { Texture } from './Texture.js';
- import { NearestFilter } from '../constants.js';
- class FramebufferTexture extends Texture {
- constructor( width, height ) {
- super( { width, height } );
- this.isFramebufferTexture = true;
- this.magFilter = NearestFilter;
- this.minFilter = NearestFilter;
- this.generateMipmaps = false;
- this.needsUpdate = true;
- }
- }
- export { FramebufferTexture };
|