diff options
author | Sven Göthel <[email protected]> | 2024-02-13 22:21:55 +0100 |
---|---|---|
committer | Sven Göthel <[email protected]> | 2024-02-13 22:21:55 +0100 |
commit | 06e5b0503a0b32b8b1e5985a9da0d5373f8b7096 (patch) | |
tree | 5d644e73e01bcfa00b71488c4701acbd9b63d84a /src/graphui/classes/com/jogamp/graph/ui/Scene.java | |
parent | 101ec44f9d6df7faa0695accccfd43f51e48e7a4 (diff) |
Bug 1501: Graph Shape: onInit(ListenerBool) -> onDraw(DrawListener) w/ added capability for code injection to render
Besides the one-shot on-init functionality, this allows us to re-render the shape differently.
Diffstat (limited to 'src/graphui/classes/com/jogamp/graph/ui/Scene.java')
-rw-r--r-- | src/graphui/classes/com/jogamp/graph/ui/Scene.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphui/classes/com/jogamp/graph/ui/Scene.java b/src/graphui/classes/com/jogamp/graph/ui/Scene.java index 7e45b44b1..56756de18 100644 --- a/src/graphui/classes/com/jogamp/graph/ui/Scene.java +++ b/src/graphui/classes/com/jogamp/graph/ui/Scene.java @@ -1377,7 +1377,7 @@ public final class Scene implements Container, GLEventListener { final GLCapabilitiesImmutable caps = glad.getChosenGLCapabilities(); final String modeS = Region.getRenderModeString(renderModes, getAAQuality(), getSampleCount(), caps.getNumSamples()); final String blendStr; - if( getRenderer().isHintMaskSet(RenderState.BITHINT_BLENDING_ENABLED) ) { + if( getRenderer().hintBitsSet(RenderState.BITHINT_BLENDING_ENABLED) ) { blendStr = ", blend"; } else { blendStr = ""; |