| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- import { Texture } from './Texture.js';
- import { ClampToEdgeWrapping, NearestFilter } from '../constants.js';
- /**
- * Creates an array of textures directly from raw buffer data.
- *
- * @augments Texture
- */
- class DataArrayTexture extends Texture {
- /**
- * Constructs a new data array texture.
- *
- * @param {?TypedArray} [data=null] - The buffer data.
- * @param {number} [width=1] - The width of the texture.
- * @param {number} [height=1] - The height of the texture.
- * @param {number} [depth=1] - The depth of the texture.
- */
- constructor( data = null, width = 1, height = 1, depth = 1 ) {
- super( null );
- /**
- * This flag can be used for type testing.
- *
- * @type {boolean}
- * @readonly
- * @default true
- */
- this.isDataArrayTexture = true;
- /**
- * The image definition of a data texture.
- *
- * @type {{data:TypedArray,width:number,height:number,depth:number}}
- */
- this.image = { data, width, height, depth };
- /**
- * How the texture is sampled when a texel covers more than one pixel.
- *
- * Overwritten and set to `NearestFilter` by default.
- *
- * @type {(NearestFilter|NearestMipmapNearestFilter|NearestMipmapLinearFilter|LinearFilter|LinearMipmapNearestFilter|LinearMipmapLinearFilter)}
- * @default NearestFilter
- */
- this.magFilter = NearestFilter;
- /**
- * How the texture is sampled when a texel covers less than one pixel.
- *
- * Overwritten and set to `NearestFilter` by default.
- *
- * @type {(NearestFilter|NearestMipmapNearestFilter|NearestMipmapLinearFilter|LinearFilter|LinearMipmapNearestFilter|LinearMipmapLinearFilter)}
- * @default NearestFilter
- */
- this.minFilter = NearestFilter;
- /**
- * This defines how the texture is wrapped in the depth and corresponds to
- * *W* in UVW mapping.
- *
- * @type {(RepeatWrapping|ClampToEdgeWrapping|MirroredRepeatWrapping)}
- * @default ClampToEdgeWrapping
- */
- this.wrapR = ClampToEdgeWrapping;
- /**
- * Whether to generate mipmaps (if possible) for a texture.
- *
- * Overwritten and set to `false` by default.
- *
- * @type {boolean}
- * @default false
- */
- this.generateMipmaps = false;
- /**
- * If set to `true`, the texture is flipped along the vertical axis when
- * uploaded to the GPU.
- *
- * Overwritten and set to `false` by default.
- *
- * @type {boolean}
- * @default false
- */
- this.flipY = false;
- /**
- * Specifies the alignment requirements for the start of each pixel row in memory.
- *
- * Overwritten and set to `1` by default.
- *
- * @type {boolean}
- * @default 1
- */
- this.unpackAlignment = 1;
- /**
- * A set of all layers which need to be updated in the texture.
- *
- * @type {Set<number>}
- */
- this.layerUpdates = new Set();
- }
- /**
- * Describes that a specific layer of the texture needs to be updated.
- * Normally when {@link Texture#needsUpdate} is set to `true`, the
- * entire data texture array is sent to the GPU. Marking specific
- * layers will only transmit subsets of all mipmaps associated with a
- * specific depth in the array which is often much more performant.
- *
- * @param {number} layerIndex - The layer index that should be updated.
- */
- addLayerUpdate( layerIndex ) {
- this.layerUpdates.add( layerIndex );
- }
- /**
- * Resets the layer updates registry.
- */
- clearLayerUpdates() {
- this.layerUpdates.clear();
- }
- }
- export { DataArrayTexture };
|