Package org.lwjgl.util.glu

Examples of org.lwjgl.util.glu.GLU


    private LWJGLImageGraphics( int width, int height, int paintedMipMapCount, int mipMapLevel, float scale, Renderer renderer ) {
        super( width, height, paintedMipMapCount, mipMapLevel, scale );

        this.renderer = renderer;
        glu = new GLU();
        if ( paintedMipMapCount > 0 && ( width > 1 || height > 1 ) ) {
            if ( width < 2 ) {
                width = 2;
            }
            if ( height < 2 ) {
View Full Code Here

TOP

Related Classes of org.lwjgl.util.glu.GLU

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.