Package org.newdawn.slick.opengl

Examples of org.newdawn.slick.opengl.SlickCallable


    g.drawImage(image,100,100);
    image.draw(100,200,80,200);
   
    font.drawString(100,200,"Text Drawn before the callable");
   
    SlickCallable callable = new SlickCallable() {
      protected void performGLOperations() throws SlickException {
        renderGL();
      }
    };
    callable.call();
   
    homer.draw(450,250,80,200);
    font.drawString(150,300,"Text Drawn after the callable");
  }
View Full Code Here

TOP

Related Classes of org.newdawn.slick.opengl.SlickCallable

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.