download
raw
403 Bytes
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 };

Xet Storage Details

Size:
403 Bytes
·
Xet hash:
992f3e9a56652c54b53250b11d790dc1842c66cc9ec4be1aa605605a5649952c

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.