Skip to content

Commit

Permalink
Fix Matrix3x2f.get3x3(buffer) with sun.misc.Unsafe (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
httpdigest committed Feb 15, 2021
1 parent 2236936 commit 57bbb18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/joml/MemUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -4105,7 +4105,7 @@ public static void put3x3(Matrix3x2f m, long destAddr) {
u.putLong( null, destAddr+12, u.getLong(m, Matrix3x2f_m00+8));
u.putInt( null, destAddr+20, 0);
u.putLong( null, destAddr+24, u.getLong(m, Matrix3x2f_m00+16));
u.putFloat(null, destAddr+32, 0.0f);
u.putFloat(null, destAddr+32, 1.0f);
}

public static void put3x3(Matrix3x2d m, long destAddr) {
Expand Down

0 comments on commit 57bbb18

Please sign in to comment.