We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, some specific code is required when handling 2D overlays with JOGL (native) and EmulGL charts.
This result in lot of code area where we use canvas.isNative() to apply different formulae for the layout in EmulGL or Native (e.g. View2DLayout).
Code would be simpler and more readable if EmulGLCanvas could return a scaled renderer height/width.
The text was updated successfully, but these errors were encountered:
Another way of dealing with HiDPI for Windows would be
setLayout(new BorderLayout() { @Override public void layoutContainer(Container target) { synchronized (target.getTreeLock()) { Insets insets = target.getInsets(); int top = insets.top; int bottom = target.getHeight() - insets.bottom; int left = insets.left; int right = target.getWidth() - insets.right; Graphics graphics = getGraphics(); AffineTransform transform = ((Graphics2D) graphics).getTransform(); double scaleX = transform.getScaleX(); double scaleY = transform.getScaleY(); int width = right - left; int height = bottom - top; width *= scaleX; height *= scaleY; renWin.setBounds(left, top, width, height); } } });
Sorry, something went wrong.
No branches or pull requests
Currently, some specific code is required when handling 2D overlays with JOGL (native) and EmulGL charts.
This result in lot of code area where we use canvas.isNative() to apply different formulae for the layout in EmulGL or Native (e.g. View2DLayout).
Code would be simpler and more readable if EmulGLCanvas could return a scaled renderer height/width.
The text was updated successfully, but these errors were encountered: