From 9a0b3014428a6a9483abb02769637f76e4c8c728 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Sat, 8 Apr 2023 02:28:23 +0200 Subject: PMVMatrix API doc: Use `` to quote code since {@code } causes block-quoting w/ Doxygen. Doxygen uses markdown --- src/jogl/classes/com/jogamp/opengl/util/PMVMatrix.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/jogl/classes/com') diff --git a/src/jogl/classes/com/jogamp/opengl/util/PMVMatrix.java b/src/jogl/classes/com/jogamp/opengl/util/PMVMatrix.java index 0d9617fb4..6c0a6c351 100644 --- a/src/jogl/classes/com/jogamp/opengl/util/PMVMatrix.java +++ b/src/jogl/classes/com/jogamp/opengl/util/PMVMatrix.java @@ -54,8 +54,8 @@ import com.jogamp.opengl.math.geom.Frustum; * regarding the projection (P), modelview (Mv) and texture (T) matrix operations, * which is specified in {@link GLMatrixFunc}. *

- * This is the second implementation of {@code PMVMatrix} using - * direct {@link Matrix4f}, {@link Vec4f} and {@link Vec3f} math operations instead of {@code float[]} + * This is the second implementation of `PMVMatrix` using + * direct {@link Matrix4f}, {@link Vec4f} and {@link Vec3f} math operations instead of `float[]` * via {@link com.jogamp.opengl.math.FloatUtil FloatUtil}. *

*

@@ -79,7 +79,7 @@ import com.jogamp.opengl.math.geom.Frustum; *

Matrix storage details
*

* The {@link SyncBuffer} abstraction is provided, e.g. {@link #getSyncPMvMviMat()}, - * to synchronize the respective {@link Matrix4f matrices} with the {@code float[]} backing store. + * to synchronize the respective {@link Matrix4f matrices} with the `float[]` backing store. * The latter is represents the data to {@link GLUniformData} via its {@link FloatBuffer}s, see {@link SyncBuffer#getBuffer()}, * and is pushed to the GPU eventually. * @@ -87,9 +87,9 @@ import com.jogamp.opengl.math.geom.Frustum; * i.e. before the data is pushed to the GPU. * * The provided {@link SyncAction} ensures that the {@link Matrix4f matrices data} - * gets copied into the {@code float[]} backing store. + * gets copied into the `float[]` backing store. * - * PMVMatrix provides two specializations of {@link SyncBuffer}, {@link SyncMatrix} for single {@link Matrix4f} mappings + * PMVMatrix provides two specializations of {@link SyncBuffer}, {@link SyncMatrix4f} for single {@link Matrix4f} mappings * and {@link SyncMatrices4f} for multiple {@link Matrix4f} mappings. * * They can be feed directly to instantiate a {@link GLUniformData} object via e.g. {@link GLUniformData#GLUniformData(String, int, int, SyncBuffer)}. -- cgit v1.2.3