aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/jogamp/math/util/PMVMatrix4f.java
diff options
context:
space:
mode:
authorSven Göthel <[email protected]>2024-04-25 03:27:51 +0200
committerSven Göthel <[email protected]>2024-04-25 03:27:51 +0200
commitdd67c91abd2e5f549fe35f590f37c5d6c732a100 (patch)
treeff2d73a293b4c285a51292e05797e4194174b95f /src/jogl/classes/com/jogamp/math/util/PMVMatrix4f.java
parent78f6de75d2645a8cc0c6df0f1f2d01d81645f3de (diff)
Math: Align Frustum/Matrix dependency w/ native jaulib
Diffstat (limited to 'src/jogl/classes/com/jogamp/math/util/PMVMatrix4f.java')
-rw-r--r--src/jogl/classes/com/jogamp/math/util/PMVMatrix4f.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/com/jogamp/math/util/PMVMatrix4f.java b/src/jogl/classes/com/jogamp/math/util/PMVMatrix4f.java
index 7d02904be..650289d1f 100644
--- a/src/jogl/classes/com/jogamp/math/util/PMVMatrix4f.java
+++ b/src/jogl/classes/com/jogamp/math/util/PMVMatrix4f.java
@@ -1259,7 +1259,7 @@ public class PMVMatrix4f {
if( null == frustum ) {
frustum = new Frustum();
}
- getPMv().updateFrustumPlanes(frustum);
+ frustum.setFromMat(getPMv());
dirtyBits &= ~FRUSTUM;
}
return frustum;