Spaces:
Running
Running
File size: 564 Bytes
2b7aae2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import { Texture } from './Texture.js';
import { ClampToEdgeWrapping, NearestFilter } from '../constants.js';
class DataTexture2DArray extends Texture {
constructor(data = null, width = 1, height = 1, depth = 1) {
super(null);
this.image = { data, width, height, depth };
this.magFilter = NearestFilter;
this.minFilter = NearestFilter;
this.wrapR = ClampToEdgeWrapping;
this.generateMipmaps = false;
this.flipY = false;
this.unpackAlignment = 1;
}
}
DataTexture2DArray.prototype.isDataTexture2DArray = true;
export { DataTexture2DArray };
|