WebGLArrayRenderTarget constructor
Implementation
WebGLArrayRenderTarget(int width, int height, int depth)
: super(width, height) {
this.depth = depth;
texture = DataArrayTexture(null, width, height, depth);
texture.isRenderTargetTexture = true;
}