Skip to content

Commit

Permalink
Fix Projection create_orthogonal being incorrect
Browse files Browse the repository at this point in the history
Title
  • Loading branch information
thimenesup authored Apr 14, 2024
1 parent 4b7661a commit e4ae69f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/variant/projection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Projection Projection::create_for_hmd(int p_eye, real_t p_aspect, real_t p_intra

Projection Projection::create_orthogonal(real_t p_left, real_t p_right, real_t p_bottom, real_t p_top, real_t p_znear, real_t p_zfar) {
Projection proj;
proj.set_orthogonal(p_left, p_right, p_bottom, p_top, p_zfar, p_zfar);
proj.set_orthogonal(p_left, p_right, p_bottom, p_top, p_znear, p_zfar);
return proj;
}

Expand Down

0 comments on commit e4ae69f

Please sign in to comment.