Add stub makeXRCompatible()

This commit is contained in:
Manish Goregaokar 2019-06-10 16:19:37 -07:00
parent 52b0d37bb7
commit 2af8e0ef9f
3 changed files with 14 additions and 1 deletions

View file

@ -44,4 +44,3 @@ interface XRSession : EventTarget {
// attribute EventHandler onselectstart;
// attribute EventHandler onselectend;
};

View file

@ -41,3 +41,7 @@ interface XRWebGLLayer : XRLayer {
// // Static Methods
// static double getNativeFramebufferScaleFactor(XRSession session);
};
partial interface WebGLRenderingContext {
[Pref="dom.webxr.enabled"] Promise<void> makeXRCompatible();
};