Re: JOGL does not work on versions higher than eclipse 2021-03
Posted by
Marcel on
Oct 02, 2021; 12:35pm
URL: https://forum.jogamp.org/JOGL-does-not-work-on-versions-higher-than-eclipse-2021-03-tp4041328p4041338.html
Hello Alexis,
I use it succesfully in different perpsectives. However, I haven't tested it with the latest SWT release on Eclipse 4.21.
The transition isn't very hard. Yes, I benefit from the same services and it will definitely display OpenGL faster using a high performance display. I also added some workarounds for fullscreen and reparenting of detached views (on MacOSX).
I can open WorldWind and my 3D canvas side by side.
Here is an easy extracted snippet:
........
GLProfile glprofile = GLProfile.getDefault();
GLWindow glWindow = GLWindow.create(new GLCapabilities(glprofile));
NewtCanvasSWT canvas = new NewtCanvasSWT(composite SWT.NO_BACKGROUND, glWindow);
canvas.setSize(canvasWidth, canvasHeight);
glWindow.addGLEventListener(renderer);
canvas.setFocus();
glWindow.addKeyListener(this);
glWindow.addMouseListener(this);
.........
See:
https://jogamp.org/deployment/jogamp-next/javadoc/jogl/javadoc/com/jogamp/newt/swt/NewtCanvasSWT.html#%3Cinit%3E(org.eclipse.swt.widgets.Composite,int,com.jogamp.newt.Window)