Revert OpenVrDisplayPlugin getPlayAreaRect hack

This commit is contained in:
Ada 2024-12-12 11:27:22 +10:00
parent 6b56354ed0
commit ac75151449

View file

@ -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() {