diff options
Diffstat (limited to 'src/jogl/classes/javax')
-rw-r--r-- | src/jogl/classes/javax/media/opengl/fixedfunc/GLMatrixFunc.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jogl/classes/javax/media/opengl/fixedfunc/GLMatrixFunc.java b/src/jogl/classes/javax/media/opengl/fixedfunc/GLMatrixFunc.java index b4d788329..87a23d12a 100644 --- a/src/jogl/classes/javax/media/opengl/fixedfunc/GLMatrixFunc.java +++ b/src/jogl/classes/javax/media/opengl/fixedfunc/GLMatrixFunc.java @@ -113,13 +113,13 @@ public interface GLMatrixFunc { public void glLoadMatrixf(float[] m, int m_offset); /** - * Multiply the current matrix + * Multiply the current matrix: [c] = [c] x [m] * @param m the FloatBuffer's position remains unchanged, * which is the same behavior than the native JOGL GL impl */ public void glMultMatrixf(java.nio.FloatBuffer m) ; /** - * Multiply the current matrix + * Multiply the current matrix: [c] = [c] x [m] */ public void glMultMatrixf(float[] m, int m_offset); |