aboutsummaryrefslogtreecommitdiffstats
path: root/src/graphui/classes/com/jogamp/graph/ui/Scene.java
diff options
context:
space:
mode:
authorSven Gothel <sgothel@jausoft.com>2023-08-02 14:36:58 +0200
committerSven Gothel <sgothel@jausoft.com>2023-08-02 14:36:58 +0200
commit463a5cd983f0dfe1aea54574c25b532645b0502f (patch)
tree71ed571f0b7cb8bdae930f17261111060faf00a8 /src/graphui/classes/com/jogamp/graph/ui/Scene.java
parentaa4463568da2dee0af8bc8d959444f67cd9a5c69 (diff)
Graph: Simplify RegionRenderer API by exposing common RenderState methods (and fwd 'em to RenderState aggregate)
Diffstat (limited to 'src/graphui/classes/com/jogamp/graph/ui/Scene.java')
-rw-r--r--src/graphui/classes/com/jogamp/graph/ui/Scene.java7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/graphui/classes/com/jogamp/graph/ui/Scene.java b/src/graphui/classes/com/jogamp/graph/ui/Scene.java
index c501b8eb8..5100aabf7 100644
--- a/src/graphui/classes/com/jogamp/graph/ui/Scene.java
+++ b/src/graphui/classes/com/jogamp/graph/ui/Scene.java
@@ -161,9 +161,6 @@ public final class Scene implements Container, GLEventListener {
/** Returns the associated RegionRenderer */
public RegionRenderer getRenderer() { return renderer; }
- /** Returns the associated RegionRenderer's RenderState. */
- public RenderState getRenderState() { return renderer.getRenderState(); }
-
/**
* Sets the clear parameter for {@link GL#glClearColor(float, float, float, float) glClearColor(..)} and {@link GL#glClear(int) glClear(..)}
* to be issued at {@link #display(GLAutoDrawable)}.
@@ -401,7 +398,7 @@ public final class Scene implements Container, GLEventListener {
final float color = ( i + 1f ) / ( shapeCount + 2f );
// FIXME
// System.err.printf("drawGL: color %f, index %d of [0..%d[%n", color, i, shapeCount);
- renderer.getRenderState().setColorStatic(color, color, color, 1f);
+ renderer.setColorStatic(color, color, color, 1f);
shape.drawToSelect(gl, renderer, sampleCount0);
} else {
shape.draw(gl, renderer, sampleCount0);
@@ -1041,7 +1038,7 @@ public final class Scene implements Container, GLEventListener {
} else {
qualityStr = "";
}
- if( getRenderState().isHintMaskSet(RenderState.BITHINT_BLENDING_ENABLED) ) {
+ if( getRenderer().isHintMaskSet(RenderState.BITHINT_BLENDING_ENABLED) ) {
blendStr = ", blend";
} else {
blendStr = "";