Windows 10 pro 64 bit. I try to open the my old project that was based on awt (JFrame)+JOGL.
This is my jars:
And my imports:
import com.jogamp.common.nio.Buffers;
import com.jogamp.opengl.GLAutoDrawable;
import com.jogamp.opengl.GLCapabilities;
import com.jogamp.opengl.GLProfile;
import com.jogamp.opengl.awt.GLCanvas;
import com.jogamp.opengl.util.awt.TextRenderer;
import com.jogamp.opengl.util.texture.Texture;
import com.jogamp.opengl.util.texture.TextureIO;
With old JOGL it works but with last version JOGL 2.4 "com.jogamp.opengl.awt" is apsent. Only import com.jogamp.opengl.swt is present...
com.jogamp.opengl.GLAutoDrawable; // not available
com.jogamp.opengl.GLCapabilities; // not available
com.jogamp.opengl.GLProfile; // not available
com.jogamp.opengl.awt.GLCanvas; // not available
What I do wrong?