12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262 |
- /*
- * WebXR Device API
- */
- /**
- * @type {XR}
- */
- Navigator.prototype.xr;
- /**
- * @constructor
- */
- function XRSessionInit() {};
- /**
- * @type {Array<string>}
- */
- XRSessionInit.prototype.requiredFeatures;
- /**
- * @type {Array<string>}
- */
- XRSessionInit.prototype.optionalFeatures;
- /**
- * @constructor
- */
- function XR() {}
- /**
- * @type {?function (Event)}
- */
- XR.prototype.ondevicechanged;
- /**
- * @param {string} mode
- *
- * @return {!Promise<boolean>}
- */
- XR.prototype.isSessionSupported = function(mode) {};
- /**
- * @param {string} mode
- * @param {XRSessionInit} options
- *
- * @return {!Promise<XRSession>}
- */
- XR.prototype.requestSession = function(mode, options) {};
- /**
- * @constructor
- */
- function XRSession() {}
- /**
- * @type {XRRenderState}
- */
- XRSession.prototype.renderState;
- /**
- * @type {Array<XRInputSource>}
- */
- XRSession.prototype.inputSources;
- /**
- * @type {string}
- */
- XRSession.prototype.visibilityState;
- /**
- * @type {?number}
- */
- XRSession.prototype.frameRate;
- /**
- * @type {?Float32Array}
- */
- XRSession.prototype.supportedFrameRates;
- /**
- * @type {Array<string>}
- */
- XRSession.prototype.enabledFeatures;
- /**
- * @type {string}
- */
- XRSession.prototype.environmentBlendMode;
- /**
- * @type {?function (Event)}
- */
- XRSession.prototype.onend;
- /**
- * @type {?function (XRInputSourcesChangeEvent)}
- */
- XRSession.prototype.oninputsourceschange;
- /**
- * @type {?function (XRInputSourceEvent)}
- */
- XRSession.prototype.onselectstart;
- /**
- * @type {?function (XRInputSourceEvent)}
- */
- XRSession.prototype.onselect;
- /**
- * @type {?function (XRInputSourceEvent)}
- */
- XRSession.prototype.onselectend;
- /**
- * @type {?function (XRInputSourceEvent)}
- */
- XRSession.prototype.onsqueezestart;
- /**
- * @type {?function (XRInputSourceEvent)}
- */
- XRSession.prototype.onsqueeze;
- /**
- * @type {?function (XRInputSourceEvent)}
- */
- XRSession.prototype.onsqueezeend;
- /**
- * @type {?function (Event)}
- */
- XRSession.prototype.onvisibilitychange;
- /**
- * @param {XRRenderStateInit} state
- * @return {void}
- */
- XRSession.prototype.updateRenderState = function (state) {};
- /**
- * @param {XRFrameRequestCallback} callback
- * @return {number}
- */
- XRSession.prototype.requestAnimationFrame = function (callback) {};
- /**
- * @param {number} handle
- * @return {void}
- */
- XRSession.prototype.cancelAnimationFrame = function (handle) {};
- /**
- * @return {Promise<void>}
- */
- XRSession.prototype.end = function () {};
- /**
- * @param {string} referenceSpaceType
- * @return {Promise<XRReferenceSpace>}
- */
- XRSession.prototype.requestReferenceSpace = function (referenceSpaceType) {};
- /**
- * @param {number} rate
- * @return {Promise<undefined>}
- */
- XRSession.prototype.updateTargetFrameRate = function (rate) {};
- /**
- * @typedef {function(number, XRFrame): undefined}
- */
- var XRFrameRequestCallback;
- /**
- * @constructor
- */
- function XRRenderStateInit() {}
- /**
- * @type {number}
- */
- XRRenderStateInit.prototype.depthNear;
- /**
- * @type {number}
- */
- XRRenderStateInit.prototype.depthFar;
- /**
- * @type {number}
- */
- XRRenderStateInit.prototype.inlineVerticalFieldOfView;
- /**
- * @type {?XRWebGLLayer}
- */
- XRRenderStateInit.prototype.baseLayer;
- /**
- * @constructor
- */
- function XRRenderState() {};
- /**
- * @type {number}
- */
- XRRenderState.prototype.depthNear;
- /**
- * @type {number}
- */
- XRRenderState.prototype.depthFar;
- /**
- * @type {?number}
- */
- XRRenderState.prototype.inlineVerticalFieldOfView;
- /**
- * @type {?XRWebGLLayer}
- */
- XRRenderState.prototype.baseLayer;
- /**
- * @constructor
- */
- function XRFrame() {}
- /**
- * @type {XRSession}
- */
- XRFrame.prototype.session;
- /**
- * @param {XRReferenceSpace} referenceSpace
- * @return {?XRViewerPose}
- */
- XRFrame.prototype.getViewerPose = function (referenceSpace) {};
- /**
- * @param {XRSpace} space
- * @param {XRSpace} baseSpace
- * @return {XRPose}
- */
- XRFrame.prototype.getPose = function (space, baseSpace) {};
- /**
- * @param {Array<XRSpace>} spaces
- * @param {XRSpace} baseSpace
- * @param {Float32Array} transforms
- * @return {boolean}
- */
- XRFrame.prototype.fillPoses = function (spaces, baseSpace, transforms) {};
- /**
- * @param {Array<XRJointSpace>} jointSpaces
- * @param {Float32Array} radii
- * @return {boolean}
- */
- XRFrame.prototype.fillJointRadii = function (jointSpaces, radii) {};
- /**
- * @constructor
- */
- function XRReferenceSpace() {};
- /**
- * @type {Array<DOMPointReadOnly>}
- */
- XRReferenceSpace.prototype.boundsGeometry;
- /**
- * @param {XRRigidTransform} originOffset
- * @return {XRReferenceSpace}
- */
- XRReferenceSpace.prototype.getOffsetReferenceSpace = function(originOffset) {};
- /**
- * @type {?function (Event)}
- */
- XRReferenceSpace.prototype.onreset;
- /**
- * @constructor
- */
- function XRRigidTransform() {};
- /**
- * @type {DOMPointReadOnly}
- */
- XRRigidTransform.prototype.position;
- /**
- * @type {DOMPointReadOnly}
- */
- XRRigidTransform.prototype.orientation;
- /**
- * @type {Float32Array}
- */
- XRRigidTransform.prototype.matrix;
- /**
- * @type {XRRigidTransform}
- */
- XRRigidTransform.prototype.inverse;
- /**
- * @constructor
- */
- function XRView() {}
- /**
- * @type {string}
- */
- XRView.prototype.eye;
- /**
- * @type {Float32Array}
- */
- XRView.prototype.projectionMatrix;
- /**
- * @type {XRRigidTransform}
- */
- XRView.prototype.transform;
- /**
- * @constructor
- */
- function XRViewerPose() {}
- /**
- * @type {Array<XRView>}
- */
- XRViewerPose.prototype.views;
- /**
- * @constructor
- */
- function XRViewport() {}
- /**
- * @type {number}
- */
- XRViewport.prototype.x;
- /**
- * @type {number}
- */
- XRViewport.prototype.y;
- /**
- * @type {number}
- */
- XRViewport.prototype.width;
- /**
- * @type {number}
- */
- XRViewport.prototype.height;
- /**
- * @constructor
- */
- function XRWebGLLayerInit() {};
- /**
- * @type {boolean}
- */
- XRWebGLLayerInit.prototype.antialias;
- /**
- * @type {boolean}
- */
- XRWebGLLayerInit.prototype.depth;
- /**
- * @type {boolean}
- */
- XRWebGLLayerInit.prototype.stencil;
- /**
- * @type {boolean}
- */
- XRWebGLLayerInit.prototype.alpha;
- /**
- * @type {boolean}
- */
- XRWebGLLayerInit.prototype.ignoreDepthValues;
- /**
- * @type {boolean}
- */
- XRWebGLLayerInit.prototype.ignoreDepthValues;
- /**
- * @type {number}
- */
- XRWebGLLayerInit.prototype.framebufferScaleFactor;
- /**
- * @constructor
- *
- * @param {XRSession} session
- * @param {WebGLRenderContext|WebGL2RenderingContext} ctx
- * @param {?XRWebGLLayerInit} options
- */
- function XRWebGLLayer(session, ctx, options) {}
- /**
- * @type {boolean}
- */
- XRWebGLLayer.prototype.antialias;
- /**
- * @type {boolean}
- */
- XRWebGLLayer.prototype.ignoreDepthValues;
- /**
- * @type {number}
- */
- XRWebGLLayer.prototype.framebufferWidth;
- /**
- * @type {number}
- */
- XRWebGLLayer.prototype.framebufferHeight;
- /**
- * @type {WebGLFramebuffer}
- */
- XRWebGLLayer.prototype.framebuffer;
- /**
- * @param {XRView} view
- * @return {?XRViewport}
- */
- XRWebGLLayer.prototype.getViewport = function(view) {};
- /**
- * @param {XRSession} session
- * @return {number}
- */
- XRWebGLLayer.prototype.getNativeFramebufferScaleFactor = function (session) {};
- /**
- * @constructor
- */
- function WebGLRenderingContextBase() {};
- /**
- * @return {Promise<void>}
- */
- WebGLRenderingContextBase.prototype.makeXRCompatible = function () {};
- /**
- * @constructor
- */
- function XRInputSourcesChangeEvent() {};
- /**
- * @type {Array<XRInputSource>}
- */
- XRInputSourcesChangeEvent.prototype.added;
- /**
- * @type {Array<XRInputSource>}
- */
- XRInputSourcesChangeEvent.prototype.removed;
- /**
- * @constructor
- */
- function XRInputSourceEvent() {};
- /**
- * @type {XRFrame}
- */
- XRInputSourceEvent.prototype.frame;
- /**
- * @type {XRInputSource}
- */
- XRInputSourceEvent.prototype.inputSource;
- /**
- * @constructor
- */
- function XRInputSource() {};
- /**
- * @type {Gamepad}
- */
- XRInputSource.prototype.gamepad;
- /**
- * @type {XRSpace}
- */
- XRInputSource.prototype.gripSpace;
- /**
- * @type {string}
- */
- XRInputSource.prototype.handedness;
- /**
- * @type {string}
- */
- XRInputSource.prototype.profiles;
- /**
- * @type {string}
- */
- XRInputSource.prototype.targetRayMode;
- /**
- * @type {XRSpace}
- */
- XRInputSource.prototype.targetRaySpace;
- /**
- * @type {?XRHand}
- */
- XRInputSource.prototype.hand;
- /**
- * @constructor
- */
- function XRHand() {};
- /**
- * Note: In fact, XRHand acts like a Map<string, XRJointSpace>, but I don't know
- * how to represent that here. So, we're just giving the one method we call.
- *
- * @return {Array<XRJointSpace>}
- */
- XRHand.prototype.values = function () {};
- /**
- * @type {number}
- */
- XRHand.prototype.size;
- /**
- * @param {string} key
- * @return {XRJointSpace}
- */
- XRHand.prototype.get = function (key) {};
- /**
- * @constructor
- */
- function XRSpace() {};
- /**
- * @constructor
- * @extends {XRSpace}
- */
- function XRJointSpace() {};
- /**
- * @type {string}
- */
- XRJointSpace.prototype.jointName;
- /**
- * @constructor
- */
- function XRPose() {};
- /**
- * @type {XRRigidTransform}
- */
- XRPose.prototype.transform;
- /**
- * @type {boolean}
- */
- XRPose.prototype.emulatedPosition;
- /*
- * WebXR Layers API Level 1
- */
- /**
- * @constructor XRLayer
- */
- function XRLayer() {}
- /**
- * @constructor XRLayerEventInit
- */
- function XRLayerEventInit() {}
- /**
- * @type {XRLayer}
- */
- XRLayerEventInit.prototype.layer;
- /**
- * @constructor XRLayerEvent
- *
- * @param {string} type
- * @param {XRLayerEventInit} init
- */
- function XRLayerEvent(type, init) {};
- /**
- * @type {XRLayer}
- */
- XRLayerEvent.prototype.layer;
- /**
- * @constructor XRCompositionLayer
- * @extends {XRLayer}
- */
- function XRCompositionLayer() {};
- /**
- * @type {string}
- */
- XRCompositionLayer.prototype.layout;
- /**
- * @type {boolean}
- */
- XRCompositionLayer.prototype.blendTextureAberrationCorrection;
- /**
- * @type {?boolean}
- */
- XRCompositionLayer.prototype.chromaticAberrationCorrection;
- /**
- * @type {boolean}
- */
- XRCompositionLayer.prototype.forceMonoPresentation;
- /**
- * @type {number}
- */
- XRCompositionLayer.prototype.opacity;
- /**
- * @type {number}
- */
- XRCompositionLayer.prototype.mipLevels;
- /**
- * @type {boolean}
- */
- XRCompositionLayer.prototype.needsRedraw;
- /**
- * @return {void}
- */
- XRCompositionLayer.prototype.destroy = function () {};
- /**
- * @constructor XRProjectionLayer
- * @extends {XRCompositionLayer}
- */
- function XRProjectionLayer() {}
- /**
- * @type {number}
- */
- XRProjectionLayer.prototype.textureWidth;
- /**
- * @type {number}
- */
- XRProjectionLayer.prototype.textureHeight;
- /**
- * @type {number}
- */
- XRProjectionLayer.prototype.textureArrayLength;
- /**
- * @type {boolean}
- */
- XRProjectionLayer.prototype.ignoreDepthValues;
- /**
- * @type {?number}
- */
- XRProjectionLayer.prototype.fixedFoveation;
- /**
- * @type {XRRigidTransform}
- */
- XRProjectionLayer.prototype.deltaPose;
- /**
- * @constructor XRQuadLayer
- * @extends {XRCompositionLayer}
- */
- function XRQuadLayer() {}
- /**
- * @type {XRSpace}
- */
- XRQuadLayer.prototype.space;
- /**
- * @type {XRRigidTransform}
- */
- XRQuadLayer.prototype.transform;
- /**
- * @type {number}
- */
- XRQuadLayer.prototype.width;
- /**
- * @type {number}
- */
- XRQuadLayer.prototype.height;
- /**
- * @type {?function (XRLayerEvent)}
- */
- XRQuadLayer.prototype.onredraw;
- /**
- * @constructor XRCylinderLayer
- * @extends {XRCompositionLayer}
- */
- function XRCylinderLayer() {}
- /**
- * @type {XRSpace}
- */
- XRCylinderLayer.prototype.space;
- /**
- * @type {XRRigidTransform}
- */
- XRCylinderLayer.prototype.transform;
- /**
- * @type {number}
- */
- XRCylinderLayer.prototype.radius;
- /**
- * @type {number}
- */
- XRCylinderLayer.prototype.centralAngle;
- /**
- * @type {number}
- */
- XRCylinderLayer.prototype.aspectRatio;
- /**
- * @type {?function (XRLayerEvent)}
- */
- XRCylinderLayer.prototype.onredraw;
- /**
- * @constructor XREquirectLayer
- * @extends {XRCompositionLayer}
- */
- function XREquirectLayer() {}
- /**
- * @type {XRSpace}
- */
- XREquirectLayer.prototype.space;
- /**
- * @type {XRRigidTransform}
- */
- XREquirectLayer.prototype.transform;
- /**
- * @type {number}
- */
- XREquirectLayer.prototype.radius;
- /**
- * @type {number}
- */
- XREquirectLayer.prototype.centralHorizontalAngle;
- /**
- * @type {number}
- */
- XREquirectLayer.prototype.upperVerticalAngle;
- /**
- * @type {number}
- */
- XREquirectLayer.prototype.lowerVerticalAngle;
- /**
- * @type {?function (XRLayerEvent)}
- */
- XREquirectLayer.prototype.onredraw;
- /**
- * @constructor XRCubeLayer
- * @extends {XRCompositionLayer}
- */
- function XRCubeLayer() {}
- /**
- * @type {XRSpace}
- */
- XRCubeLayer.prototype.space;
- /**
- * @type {DOMPointReadOnly}
- */
- XRCubeLayer.prototype.orientation;
- /**
- * @type {?function (XRLayerEvent)}
- */
- XRCubeLayer.prototype.onredraw;
- /**
- * @constructor XRSubImage
- */
- function XRSubImage() {}
- /**
- * @type {XRViewport}
- */
- XRSubImage.prototype.viewport;
- /**
- * @constructor XRWebGLSubImage
- * @extends {XRSubImage}
- */
- function XRWebGLSubImage () {}
- /**
- * @type {WebGLTexture}
- */
- XRWebGLSubImage.prototype.colorTexture;
- /**
- * @type {?WebGLTexture}
- */
- XRWebGLSubImage.prototype.depthStencilTexture;
- /**
- * @type {?WebGLTexture}
- */
- XRWebGLSubImage.prototype.motionVectorTexture;
- /**
- * @type {?number}
- */
- XRWebGLSubImage.prototype.imageIndex;
- /**
- * @type {number}
- */
- XRWebGLSubImage.prototype.colorTextureWidth;
- /**
- * @type {number}
- */
- XRWebGLSubImage.prototype.colorTextureHeight;
- /**
- * @type {?number}
- */
- XRWebGLSubImage.prototype.depthStencilTextureWidth;
- /**
- * @type {?number}
- */
- XRWebGLSubImage.prototype.depthStencilTextureHeight;
- /**
- * @type {?number}
- */
- XRWebGLSubImage.prototype.motionVectorTextureWidth;
- /**
- * @type {?number}
- */
- XRWebGLSubImage.prototype.motionVectorTextureHeight;
- /**
- * @constructor XRProjectionLayerInit
- */
- function XRProjectionLayerInit() {}
- /**
- * @type {string}
- */
- XRProjectionLayerInit.prototype.textureType;
- /**
- * @type {number}
- */
- XRProjectionLayerInit.prototype.colorFormat;
- /**
- * @type {number}
- */
- XRProjectionLayerInit.prototype.depthFormat;
- /**
- * @type {number}
- */
- XRProjectionLayerInit.prototype.scaleFactor;
- /**
- * @constructor XRLayerInit
- */
- function XRLayerInit() {}
- /**
- * @type {XRSpace}
- */
- XRLayerInit.prototype.space;
- /**
- * @type {number}
- */
- XRLayerInit.prototype.colorFormat;
- /**
- * @type {number}
- */
- XRLayerInit.prototype.depthFormat;
- /**
- * @type {number}
- */
- XRLayerInit.prototype.mipLevels;
- /**
- * @type {number}
- */
- XRLayerInit.prototype.viewPixelWidth;
- /**
- * @type {number}
- */
- XRLayerInit.prototype.viewPixelHeight;
- /**
- * @type {string}
- */
- XRLayerInit.prototype.layout;
- /**
- * @type {boolean}
- */
- XRLayerInit.prototype.isStatic;
- /**
- * @constructor XRQuadLayerInit
- * @extends {XRLayerInit}
- */
- function XRQuadLayerInit() {}
- /**
- * @type {string}
- */
- XRQuadLayerInit.prototype.textureType;
- /**
- * @type {?XRRigidTransform}
- */
- XRQuadLayerInit.prototype.transform;
- /**
- * @type {number}
- */
- XRQuadLayerInit.prototype.width;
- /**
- * @type {number}
- */
- XRQuadLayerInit.prototype.height;
- /**
- * @constructor XRCylinderLayerInit
- * @extends {XRLayerInit}
- */
- function XRCylinderLayerInit() {}
- /**
- * @type {string}
- */
- XRCylinderLayerInit.prototype.textureType;
- /**
- * @type {?XRRigidTransform}
- */
- XRCylinderLayerInit.prototype.transform;
- /**
- * @type {number}
- */
- XRCylinderLayerInit.prototype.radius;
- /**
- * @type {number}
- */
- XRCylinderLayerInit.prototype.centralAngle;
- /**
- * @type {number}
- */
- XRCylinderLayerInit.prototype.aspectRatio;
- /**
- * @constructor XREquirectLayerInit
- * @extends {XRLayerInit}
- */
- function XREquirectLayerInit() {}
- /**
- * @type {string}
- */
- XREquirectLayerInit.prototype.textureType;
- /**
- * @type {?XRRigidTransform}
- */
- XREquirectLayerInit.prototype.transform;
- /**
- * @type {number}
- */
- XREquirectLayerInit.prototype.radius;
- /**
- * @type {number}
- */
- XREquirectLayerInit.prototype.centralHorizontalAngle;
- /**
- * @type {number}
- */
- XREquirectLayerInit.prototype.upperVerticalAngle;
- /**
- * @type {number}
- */
- XREquirectLayerInit.prototype.lowerVerticalAngle;
- /**
- * @constructor XRCubeLayerInit
- * @extends {XRLayerInit}
- */
- function XRCubeLayerInit() {}
- /**
- * @type {DOMPointReadOnly}
- */
- XRCubeLayerInit.prototype.orientation;
- /**
- * @constructor XRWebGLBinding
- *
- * @param {XRSession} session
- * @param {WebGLRenderContext|WebGL2RenderingContext} context
- */
- function XRWebGLBinding(session, context) {}
- /**
- * @type {number}
- */
- XRWebGLBinding.prototype.nativeProjectionScaleFactor;
- /**
- * @type {number}
- */
- XRWebGLBinding.prototype.usesDepthValues;
- /**
- * @param {XRProjectionLayerInit} init
- * @return {XRProjectionLayer}
- */
- XRWebGLBinding.prototype.createProjectionLayer = function (init) {};
- /**
- * @param {XRQuadLayerInit} init
- * @return {XRQuadLayer}
- */
- XRWebGLBinding.prototype.createQuadLayer = function (init) {};
- /**
- * @param {XRCylinderLayerInit} init
- * @return {XRCylinderLayer}
- */
- XRWebGLBinding.prototype.createCylinderLayer = function (init) {};
- /**
- * @param {XREquirectLayerInit} init
- * @return {XREquirectLayer}
- */
- XRWebGLBinding.prototype.createEquirectLayer = function (init) {};
- /**
- * @param {XRCubeLayerInit} init
- * @return {XRCubeLayer}
- */
- XRWebGLBinding.prototype.createCubeLayer = function (init) {};
- /**
- * @param {XRCompositionLayer} layer
- * @param {XRFrame} frame
- * @param {string} eye
- * @return {XRWebGLSubImage}
- */
- XRWebGLBinding.prototype.getSubImage = function (layer, frame, eye) {};
- /**
- * @param {XRProjectionLayer} layer
- * @param {XRView} view
- * @return {XRWebGLSubImage}
- */
- XRWebGLBinding.prototype.getViewSubImage = function (layer, view) {};
- /**
- * @constructor XRMediaLayerInit
- */
- function XRMediaLayerInit() {}
- /**
- * @type {XRSpace}
- */
- XRMediaLayerInit.prototype.space;
- /**
- * @type {string}
- */
- XRMediaLayerInit.prototype.layout;
- /**
- * @type {boolean}
- */
- XRMediaLayerInit.prototype.invertStereo;
- /**
- * @constructor XRMediaQuadLayerInit
- * @extends {XRMediaLayerInit}
- */
- function XRMediaQuadLayerInit() {}
- /**
- * @type {XRRigidTransform}
- */
- XRMediaQuadLayerInit.prototype.transform;
- /**
- * @type {number}
- */
- XRMediaQuadLayerInit.prototype.width;
- /**
- * @type {number}
- */
- XRMediaQuadLayerInit.prototype.height;
- /**
- * @constructor XRMediaCylinderLayerInit
- * @extends {XRMediaLayerInit}
- */
- function XRMediaCylinderLayerInit() {}
- /**
- * @type {XRRigidTransform}
- */
- XRMediaCylinderLayerInit.prototype.transform;
- /**
- * @type {number}
- */
- XRMediaCylinderLayerInit.prototype.radius;
- /**
- * @type {number}
- */
- XRMediaCylinderLayerInit.prototype.centralAngle;
- /**
- * @type {?number}
- */
- XRMediaCylinderLayerInit.prototype.aspectRatio;
- /**
- * @constructor XRMediaEquirectLayerInit
- * @extends {XRMediaLayerInit}
- */
- function XRMediaEquirectLayerInit() {}
- /**
- * @type {XRRigidTransform}
- */
- XRMediaEquirectLayerInit.prototype.transform;
- /**
- * @type {number}
- */
- XRMediaEquirectLayerInit.prototype.radius;
- /**
- * @type {number}
- */
- XRMediaEquirectLayerInit.prototype.centralHorizontalAngle;
- /**
- * @type {number}
- */
- XRMediaEquirectLayerInit.prototype.upperVerticalAngle;
- /**
- * @type {number}
- */
- XRMediaEquirectLayerInit.prototype.lowerVerticalAngle;
- /**
- * @constructor XRMediaBinding
- *
- * @param {XRSession} session
- */
- function XRMediaBinding(session) {}
- /**
- * @param {HTMLVideoElement} video
- * @param {XRMediaQuadLayerInit} init
- * @return {XRQuadLayer}
- */
- XRMediaBinding.prototype.createQuadLayer = function(video, init) {};
- /**
- * @param {HTMLVideoElement} video
- * @param {XRMediaCylinderLayerInit} init
- * @return {XRCylinderLayer}
- */
- XRMediaBinding.prototype.createCylinderLayer = function(video, init) {};
- /**
- * @param {HTMLVideoElement} video
- * @param {XRMediaEquirectLayerInit} init
- * @return {XREquirectLayer}
- */
- XRMediaBinding.prototype.createEquirectLayer = function(video, init) {};
- /**
- * @type {Array<XRLayer>}
- */
- XRRenderState.prototype.layers;
|