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

Commit

Permalink
Reduce immersive resolution (#2939)
Browse files Browse the repository at this point in the history
  • Loading branch information
bluemarvin authored Mar 11, 2020
1 parent 0c5dbbb commit 5e63ca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/picovr/cpp/DeviceDelegatePicoVR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ DeviceDelegatePicoVR::RegisterImmersiveDisplay(ImmersiveDisplayPtr aDisplay) {

m.immersiveDisplay->SetDeviceName("Pico");
m.immersiveDisplay->SetCapabilityFlags(device::Position | device::Orientation | device::Present | device::ImmersiveVRSession | device::InlineSession);
m.immersiveDisplay->SetEyeResolution(m.renderWidth, m.renderHeight);
m.immersiveDisplay->SetEyeResolution(m.renderWidth / 2, m.renderHeight / 2);
m.immersiveDisplay->CompleteEnumeration();
}

Expand Down

0 comments on commit 5e63ca2

Please sign in to comment.