mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 21:12:25 +02:00
Revert OpenVrDisplayPlugin getPlayAreaRect hack
This commit is contained in:
parent
cedc5be526
commit
524665f54c
1 changed files with 0 additions and 6 deletions
|
@ -469,7 +469,6 @@ bool OpenVrDisplayPlugin::internalActivate() {
|
|||
vr::VRCompositor()->ForceInterleavedReprojectionOn(true);
|
||||
}
|
||||
|
||||
#if 0
|
||||
// set up default sensor space such that the UI overlay will align with the front of the room.
|
||||
auto chaperone = vr::VRChaperone();
|
||||
if (chaperone) {
|
||||
|
@ -486,7 +485,6 @@ bool OpenVrDisplayPlugin::internalActivate() {
|
|||
qDebug() << "OpenVR: error could not get chaperone pointer";
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
||||
if (_threadedSubmit) {
|
||||
_submitThread = std::make_shared<OpenVrSubmitThread>(*this);
|
||||
|
@ -777,9 +775,6 @@ QString OpenVrDisplayPlugin::getPreferredAudioOutDevice() const {
|
|||
}
|
||||
|
||||
QRectF OpenVrDisplayPlugin::getPlayAreaRect() {
|
||||
#if 1
|
||||
return QRectF();
|
||||
#else
|
||||
auto chaperone = vr::VRChaperone();
|
||||
if (!chaperone) {
|
||||
qWarning() << "No chaperone";
|
||||
|
@ -811,7 +806,6 @@ QRectF OpenVrDisplayPlugin::getPlayAreaRect() {
|
|||
glm::vec2 dimensions = glm::vec2(maxXZ.x - minXZ.x, maxXZ.z - minXZ.z);
|
||||
|
||||
return QRectF(center.x, center.y, dimensions.x, dimensions.y);
|
||||
#endif
|
||||
}
|
||||
|
||||
DisplayPlugin::StencilMaskMeshOperator OpenVrDisplayPlugin::getStencilMaskMeshOperator() {
|
||||
|
|
Loading…
Reference in a new issue