Package cc.plural.ecs.renderer

Examples of cc.plural.ecs.renderer.GLVendor


            case LWJGLUtil.PLATFORM_WINDOWS:
                platform = new Platform(Platform.WINDOWS, Platform.WINDOWS_NAME);
                break;
        }

        glVendor = new GLVendor(GL11.glGetString(GL11.GL_VENDOR));
        glRenderer = new GLRenderer(GL11.glGetString(GL11.GL_RENDERER));

        String versionString = GL11.glGetString(GL11.GL_VERSION);
        String versionStringSuffix = versionString.substring(0, 2);
        double versionDouble = Double.parseDouble(versionStringSuffix);
View Full Code Here

TOP

Related Classes of cc.plural.ecs.renderer.GLVendor

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.