Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Fix build failure for SVR
Browse files Browse the repository at this point in the history
  • Loading branch information
Randall Barker committed Nov 13, 2018
1 parent eaa4fc5 commit 2273bdd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/src/svr/cpp/DeviceDelegateSVR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,11 @@ DeviceDelegateSVR::GetReorientTransform() const {
return m.reorientMatrix;
}

void
DeviceDelegateSVR::SetReorientTransform(const vrb::Matrix& aMatrix) {
m.reorientMatrix = aMatrix;
}

void
DeviceDelegateSVR::SetClearColor(const vrb::Color& aColor) {
m.clearColor = aColor;
Expand Down
1 change: 1 addition & 0 deletions app/src/svr/cpp/DeviceDelegateSVR.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class DeviceDelegateSVR : public DeviceDelegate {
vrb::CameraPtr GetCamera(const device::Eye aWhich) override;
const vrb::Matrix& GetHeadTransform() const override;
const vrb::Matrix& GetReorientTransform() const override;
void SetReorientTransform(const vrb::Matrix& aMatrix) override;
void SetClearColor(const vrb::Color& aColor) override;
void SetClipPlanes(const float aNear, const float aFar) override;
void SetControllerDelegate(ControllerDelegatePtr& aController) override;
Expand Down

0 comments on commit 2273bdd

Please sign in to comment.