Re: AWTTextureIO.newTexture() not creating mipmaps
Posted by chrtom on
URL: https://forum.jogamp.org/AWTTextureIO-newTexture-not-creating-mipmaps-tp4029093p4033258.html
Thank you! Your post saved me a lot of trouble!
glGenerateMipmap is the way to go for OpenGL core profile!
It seems the Texture class does NOT call glGenerateMipmap automatically. I had to do it manually.
Thanks!