mirror of
https://github.com/lubosz/overte.git
synced 2025-04-05 23:42:22 +02:00
Fix OpenVrHelpers.cpp for updating OpenVR to 1.16.8.
This commit is contained in:
parent
f74c2d9b51
commit
bfa10852a2
1 changed files with 9 additions and 1 deletions
|
@ -411,6 +411,14 @@ void showMinSpecWarning() {
|
|||
if (!vrOverlay) {
|
||||
qFatal("Unable to initialize SteamVR overlay manager");
|
||||
}
|
||||
auto vrChaperone = vr::VRChaperone();
|
||||
if (!vrChaperone) {
|
||||
qFatal("Unable to initialize SteamVR chaperone");
|
||||
}
|
||||
auto vrCompositor = vr::VRCompositor();
|
||||
if (!vrCompositor) {
|
||||
qFatal("Unable to initialize SteamVR compositor");
|
||||
}
|
||||
|
||||
vr::VROverlayHandle_t minSpecFailedOverlay = 0;
|
||||
if (vr::VROverlayError_None != vrOverlay->CreateOverlay(FAILED_MIN_SPEC_OVERLAY_NAME, FAILED_MIN_SPEC_OVERLAY_FRIENDLY_NAME, &minSpecFailedOverlay)) {
|
||||
|
@ -443,7 +451,7 @@ void showMinSpecWarning() {
|
|||
});
|
||||
#endif
|
||||
|
||||
vrSystem->ResetSeatedZeroPose();
|
||||
vrChaperone->ResetZeroPose(vrCompositor->GetTrackingSpace());
|
||||
QString imagePath = PathUtils::resourcesPath() + "/images/steam-min-spec-failed.png";
|
||||
vrOverlay->SetOverlayFromFile(minSpecFailedOverlay, imagePath.toLocal8Bit().toStdString().c_str());
|
||||
vrOverlay->SetOverlayWidthInMeters(minSpecFailedOverlay, 1.4f);
|
||||
|
|
Loading…
Reference in a new issue