Excuse me for the previous explanation of my problem. I will try to explain better

. I tried to migrate the examples of Nehe OpenGL tutorial available on site
http://pepijn.fab4.be/software/nehe-java-ports/ for the new version of JOGL2. The examples:
Lesson07
Lesson08
Lesson10
Lesson15
Lesson16
Lesson18
Lesson22
Lesson29
uses the function
gluBuild2DMipmaps that causes the following exception:
Caused by: javax.media.opengl.GLException: not implemented
at javax.media.opengl.glu.GLU.gluBuild2DMipmaps(GLU.java:1485)
at demos.nehe.lesson22.Renderer.loadGLTextures(Renderer.java:188)
at demos.nehe.lesson22.Renderer.init(Renderer.java:141)
at demos.common.GLDisplay$MyHelpOverlayGLEventListener.init(GLDisplay.java:287)
at com.sun.opengl.impl.GLDrawableHelper.init(GLDrawableHelper.java:88)
at javax.media.opengl.awt.GLCanvas$InitAction.run(GLCanvas.java:601)
at com.sun.opengl.impl.GLDrawableHelper.invokeGL(GLDrawableHelper.java:149)
at javax.media.opengl.awt.GLCanvas$DisplayOnEventDispatchThreadAction.run(GLCanvas.java:635)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:199)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
In this address(
http://sites.google.com/site/eddiebro3/Nehe-Source.rar), I'm providing the source code to OpenGL Nehe Tutorial Moved to JOGL2.
So, anyone know the causes of that exception?
Please help...