File size: 292 Bytes
6cd9596 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import { Texture } from './Texture';
import { NearestFilter } from '../constants';
import { TypedArray } from '../polyfills';
export class DataTexture2DArray extends Texture {
constructor(
data: ArrayBuffer | TypedArray,
width: number,
height: number,
depth: number
);
}
|