浏览代码

Forgot to apply oversampling to Y

Bastiaan Olij 7 年之前
父节点
当前提交
4f9dac5bb1
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      core/math/camera_matrix.cpp

+ 1 - 0
core/math/camera_matrix.cpp

@@ -140,6 +140,7 @@ void CameraMatrix::set_for_hmd(int p_eye, real_t p_aspect, real_t p_intraocular_
 	real_t add = ((f1 + f2) * (p_oversample - 1.0)) / 2.0;
 	f1 += add;
 	f2 += add;
+	f3 *= p_oversample;
 
 	// always apply KEEP_WIDTH aspect ratio
 	f3 *= p_aspect;