From fff2127e660a6dcf6f269d90802499aba0855a13 Mon Sep 17 00:00:00 2001 From: Lubosz Sarnecki Date: Sun, 10 Mar 2024 21:02:42 +0100 Subject: [PATCH] Application: Maintain orientation of eye offset matrix. --- interface/src/Application_Graphics.cpp | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/interface/src/Application_Graphics.cpp b/interface/src/Application_Graphics.cpp index 9d63e661f8..f6b390a32d 100644 --- a/interface/src/Application_Graphics.cpp +++ b/interface/src/Application_Graphics.cpp @@ -551,16 +551,10 @@ void Application::updateRenderArgs(float deltaTime) { // only when the display plugin changes (or in non-HMD modes when the user // changes the FOV manually, which right now I don't think they can. for_each_eye([&](Eye eye) { - // For providing the stereo eye views, the HMD head pose has already been - // applied to the avatar, so we need to get the difference between the head - // pose applied to the avatar and the per eye pose, and use THAT as - // the per-eye stereo matrix adjustment. - mat4 eyeToHead = getActiveDisplayPlugin()->getEyeToHeadTransform(eye); // Grab the translation - vec3 eyeOffset = glm::vec3(eyeToHead[3]); + eyeOffsets[eye] = getActiveDisplayPlugin()->getEyeToHeadTransform(eye); // Apply IPD scaling - mat4 eyeOffsetTransform = glm::translate(mat4(), eyeOffset * -1.0f * ipdScale); - eyeOffsets[eye] = eyeOffsetTransform; + eyeOffsets[eye][3][0] *= ipdScale; eyeProjections[eye] = getActiveDisplayPlugin()->getEyeProjection(eye, baseProjection); });