Allow VRLayer left and right bounds to accept types of number[], Float32Array or null.
This commit is contained in:
Buck Supergoose
2018-09-11 16:26:48 +01:00
committed by Ryan Cavanaugh
parent f439710d62
commit 822fafc157

View File

@@ -133,8 +133,8 @@ declare var VRDisplay: {
};
interface VRLayer {
leftBounds?: number[] | null;
rightBounds?: number[] | null;
leftBounds?: number[] | Float32Array | null;
rightBounds?: number[] | Float32Array | null;
source?: HTMLCanvasElement | null;
}