24 lines
403 B
JavaScript
24 lines
403 B
JavaScript
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 };
|