Package org.robovm.cocoatouch.opengles

Examples of org.robovm.cocoatouch.opengles.EAGLContext


    width = (int) bounds.width();
    height = (int) bounds.height();
    app.debug(tag, bounds.width() + "x" + bounds.height() + ", " + UIScreen.getMainScreen().getScale());
    this.gl20 = gl20;

    context = new EAGLContext(EAGLRenderingAPI.OpenGLES2);

    view = new GLKView(new CGRect(new CGPoint(0, 0), bounds), context) {
      @Override
      public void touchesBegan(NSSet touches, UIEvent event) {
        super.touchesBegan(touches, event);
View Full Code Here

TOP

Related Classes of org.robovm.cocoatouch.opengles.EAGLContext

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.