UNPKG

224 BTypeScriptView Raw
1import { Texture } from './Texture';
2import { TypedArray } from '../polyfills';
3
4export class DataTexture2DArray extends Texture {
5
6 constructor(
7 data: TypedArray,
8 width: number,
9 height: number,
10 depth: number
11 );
12
13}