Skip to content

Commit

Permalink
Fix aliasing bug in Matrix4.frustum/frustumLH()
Browse files Browse the repository at this point in the history
  • Loading branch information
httpdigest committed Feb 11, 2021
1 parent 0b464dc commit dceb7e8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
8 changes: 0 additions & 8 deletions src/org/joml/Matrix4d.java
Original file line number Diff line number Diff line change
Expand Up @@ -13056,10 +13056,6 @@ private Matrix4d frustumGeneric(double left, double right, double bottom, double
._m21(nm21)
._m22(nm22)
._m23(nm23)
._m30(m30)
._m31(m31)
._m32(m32)
._m33(m33)
._properties(0);
return dest;
}
Expand Down Expand Up @@ -13352,10 +13348,6 @@ private Matrix4d frustumLHGeneric(double left, double right, double bottom, doub
._m21(nm21)
._m22(nm22)
._m23(nm23)
._m30(m30)
._m31(m31)
._m32(m32)
._m33(m33)
._properties(0);
return dest;
}
Expand Down
8 changes: 0 additions & 8 deletions src/org/joml/Matrix4f.java
Original file line number Diff line number Diff line change
Expand Up @@ -10160,10 +10160,6 @@ private Matrix4f frustumGeneric(float left, float right, float bottom, float top
._m21(nm21)
._m22(nm22)
._m23(nm23)
._m30(m30)
._m31(m31)
._m32(m32)
._m33(m33)
._properties(0);
return dest;
}
Expand Down Expand Up @@ -10456,10 +10452,6 @@ private Matrix4f frustumLHGeneric(float left, float right, float bottom, float t
._m21(nm21)
._m22(nm22)
._m23(nm23)
._m30(m30)
._m31(m31)
._m32(m32)
._m33(m33)
._properties(0);
return dest;
}
Expand Down

0 comments on commit dceb7e8

Please sign in to comment.