mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Context: Maintain orientation of eye offset matrix.
This commit is contained in:
parent
da111b996c
commit
2125d60a4e
1 changed files with 6 additions and 2 deletions
|
@ -238,10 +238,14 @@ const Backend::TransformCamera& Backend::TransformCamera::recomputeDerived(const
|
|||
Backend::TransformCamera Backend::TransformCamera::getEyeCamera(int eye, const StereoState& _stereo, const Transform& xformView, Vec2 normalizedJitter) const {
|
||||
TransformCamera result = *this;
|
||||
Transform offsetTransform = xformView;
|
||||
if (!_stereo._skybox) {
|
||||
offsetTransform.postTranslate(-Vec3(_stereo._eyeViews[eye][3]));
|
||||
glm::vec3 eyePosition = extractTranslation(_stereo._eyeViews[eye]);
|
||||
glm::quat eyeOrientation = glmExtractRotation(_stereo._eyeViews[eye]);
|
||||
if (!_stereo._skybox)
|
||||
{
|
||||
offsetTransform.postRotate(eyeOrientation).postTranslate(eyePosition);
|
||||
} else {
|
||||
// FIXME: If "skybox" the ipd is set to 0 for now, let s try to propose a better solution for this in the future
|
||||
offsetTransform.postRotate(eyeOrientation);
|
||||
}
|
||||
result._projection = _stereo._eyeProjections[eye];
|
||||
normalizedJitter.x *= 2.0f;
|
||||
|
|
Loading…
Reference in a new issue