Package com.ardor3d.framework.lwjgl

Examples of com.ardor3d.framework.lwjgl.LwjglDisplayCanvas


    }

    protected void initGL() throws LWJGLException {
        TextureRendererFactory.INSTANCE.setProvider(new LwjglTextureRendererProvider());
        final LwjglCanvasRenderer canvasRenderer = new LwjglCanvasRenderer(this);
        _glCanvas = new LwjglDisplayCanvas(_displayCanvas, _settings, canvasRenderer);
        _glCanvas.init();

        // by default, we'll keep it vsync'd
        _glCanvas.setVSyncEnabled(true);
    }
View Full Code Here

TOP

Related Classes of com.ardor3d.framework.lwjgl.LwjglDisplayCanvas

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.