From e5e7514d649cd7dd28bbb8e04b72338dc09c2c83 Mon Sep 17 00:00:00 2001 From: Glenn Burkhardt Date: Mon, 6 Mar 2023 08:46:16 -0500 Subject: Fix for AWT GLCcanvas DPI scaling. Forum thread https://forum.jogamp.org/DPI-scaling-not-working-td4042206.html --- src/jogl/classes/com/jogamp/opengl/awt/GLCanvas.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/jogl') diff --git a/src/jogl/classes/com/jogamp/opengl/awt/GLCanvas.java b/src/jogl/classes/com/jogamp/opengl/awt/GLCanvas.java index 0d1b272ba..602671f6e 100644 --- a/src/jogl/classes/com/jogamp/opengl/awt/GLCanvas.java +++ b/src/jogl/classes/com/jogamp/opengl/awt/GLCanvas.java @@ -662,8 +662,14 @@ public class GLCanvas extends Canvas implements AWTGLAutoDrawable, WindowClosing _lock.unlock(); } } }; + private final boolean setSurfaceScaleImpl(final ScalableSurface ns) { - if( ns.setSurfaceScale(reqPixelScale) ) { + if(DEBUG) { + System.err.printf("GLCanvas.setSurfaceScaleImpl reqPixelScale %.2f %.2f, hasPixelScale %.2f %.2f\n", + reqPixelScale[0], reqPixelScale[1], hasPixelScale[0], hasPixelScale[1]); + } + + if( ns.setSurfaceScale(hasPixelScale) ) { ns.getCurrentSurfaceScale(hasPixelScale); return true; } else { -- cgit v1.2.3