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