aboutsummaryrefslogtreecommitdiffstats
path: root/src/graphui/classes/com/jogamp/graph/ui/Shape.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphui/classes/com/jogamp/graph/ui/Shape.java')
-rw-r--r--src/graphui/classes/com/jogamp/graph/ui/Shape.java24
1 files changed, 19 insertions, 5 deletions
diff --git a/src/graphui/classes/com/jogamp/graph/ui/Shape.java b/src/graphui/classes/com/jogamp/graph/ui/Shape.java
index 17b1f5344..225750b09 100644
--- a/src/graphui/classes/com/jogamp/graph/ui/Shape.java
+++ b/src/graphui/classes/com/jogamp/graph/ui/Shape.java
@@ -456,7 +456,7 @@ public abstract class Shape {
/** Return unscaled rotation origin, aka pivot. Null if not set via {@link #getRotationPivot()}. */
public final Vec3f getRotationPivot() { return rotPivot; }
/**
- * Set unscaled rotation origin, aka pivot. Usually the {@link #getBounds()} center and should be set while {@link #validateImpl(GLProfile, GL2ES2)}.
+ * Set unscaled rotation origin, aka pivot. Usually the {@link #getBounds()} center and should be set while {@link #validateImpl(GL2ES2, GLProfile)}.
* @return this shape for chaining
*/
public final Shape setRotationPivot(final float px, final float py, final float pz) {
@@ -464,7 +464,7 @@ public abstract class Shape {
return this;
}
/**
- * Set unscaled rotation origin, aka pivot. Usually the {@link #getBounds()} center and should be set while {@link #validateImpl(GLProfile, GL2ES2)}.
+ * Set unscaled rotation origin, aka pivot. Usually the {@link #getBounds()} center and should be set while {@link #validateImpl(GL2ES2, GLProfile)}.
* @param pivot rotation origin
* @return this shape for chaining
*/
@@ -688,7 +688,7 @@ public abstract class Shape {
if( isShapeDirty() ) {
box.reset();
}
- validateImpl(gl.getGLProfile(), gl);
+ validateImpl(gl, gl.getGLProfile());
dirty = 0;
}
return this;
@@ -707,13 +707,27 @@ public abstract class Shape {
if( isShapeDirty() ) {
box.reset();
}
- validateImpl(glp, null);
+ validateImpl(null, glp);
dirty = 0;
}
return this;
}
/**
+ * Validate the shape via {@link #validate(GL2ES2)} if {@code gl} is not null,
+ * otherwise uses {@link #validate(GLProfile)}.
+ * @see #validate(GL2ES2)
+ * @see #validate(GLProfile)
+ */
+ public final Shape validate(final GL2ES2 gl, final GLProfile glp) {
+ if( null != gl ) {
+ return validate(gl);
+ } else {
+ return validate(glp);
+ }
+ }
+
+ /**
* Setup the {@link PMVMatrix4f#getMv() modelview matrix} of the given {@link PMVMatrix4f} for this object.
* - Scale shape from its center position
* - Rotate shape around optional scaled pivot, see {@link #setRotationPivot(float[])}), otherwise rotate around its scaled center (default)
@@ -1822,7 +1836,7 @@ public abstract class Shape {
//
//
- protected abstract void validateImpl(final GLProfile glp, final GL2ES2 gl);
+ protected abstract void validateImpl(final GL2ES2 gl, final GLProfile glp);
/**
* Actual draw implementation, called by {@link #draw(GL2ES2, RegionRenderer, int[])}