| Current Path : /var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/three/src/textures/ |
| Current File : /var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/three/src/textures/FramebufferTexture.js |
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 };