tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

XRReferenceSpace.h (1495B)


      1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
      3 /* This Source Code Form is subject to the terms of the Mozilla Public
      4 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
      5 * You can obtain one at http://mozilla.org/MPL/2.0/. */
      6 
      7 #ifndef mozilla_dom_XRReferenceSpace_h_
      8 #define mozilla_dom_XRReferenceSpace_h_
      9 
     10 #include "gfxVR.h"
     11 #include "mozilla/DOMEventTargetHelper.h"
     12 #include "mozilla/dom/WebXRBinding.h"
     13 #include "mozilla/dom/XRSpace.h"
     14 
     15 namespace mozilla::dom {
     16 
     17 enum class XRReferenceSpaceType : uint8_t;
     18 class XRRigidTransform;
     19 class XRSession;
     20 
     21 class XRReferenceSpace : public XRSpace {
     22 public:
     23  explicit XRReferenceSpace(nsIGlobalObject* aParent, XRSession* aSession,
     24                            XRNativeOrigin* aNativeOrigin,
     25                            XRReferenceSpaceType aType);
     26 
     27  // WebIDL Boilerplate
     28  JSObject* WrapObject(JSContext* aCx,
     29                       JS::Handle<JSObject*> aGivenProto) override;
     30 
     31  // WebIDL Members
     32  virtual already_AddRefed<XRReferenceSpace> GetOffsetReferenceSpace(
     33      const XRRigidTransform& aOriginOffset);
     34 
     35  // TODO (Bug 1611309): Implement XRReferenceSpace reset events
     36  // https://immersive-web.github.io/webxr/#eventdef-xrreferencespace-reset
     37  IMPL_EVENT_HANDLER(reset);
     38 
     39 protected:
     40  virtual ~XRReferenceSpace() = default;
     41  XRReferenceSpaceType mType;
     42 };
     43 
     44 }  // namespace mozilla::dom
     45 
     46 #endif  // mozilla_dom_XRReferenceSpace_h_