Package mdesl.test

Examples of mdesl.test.Game.start()


public class ShaderLesson3 extends SimpleGame {

  public static void main(String[] args) throws LWJGLException {
    Game game = new ShaderLesson3();
    game.setDisplayMode(320, 240, false);
    game.start();
  }

  //our texture
  Texture tex;
 
View Full Code Here


public class ShaderLesson1 extends SimpleGame {

  public static void main(String[] args) throws LWJGLException {
    Game game = new ShaderLesson1();
    game.setDisplayMode(640, 480, false);
    game.start();
  }

  //our texture
  Texture tex;
 
View Full Code Here

public class ShaderLesson4B extends SimpleGame {

  public static void main(String[] args) throws LWJGLException {
    Game game = new ShaderLesson4B();
    game.setDisplayMode(640, 480, false);
    game.start();
  }

  //our grass texture
  Texture tex0;
 
View Full Code Here

public class ShaderLesson4 extends SimpleGame {

  public static void main(String[] args) throws LWJGLException {
    Game game = new ShaderLesson4();
    game.setDisplayMode(640, 480, false);
    game.start();
  }

  //our grass texture
  Texture tex0;
 
View Full Code Here

  public static final int FBO_SIZE = 1024;
 
  public static void main(String[] args) throws LWJGLException {
    Game game = new ShaderLesson5();
    game.setDisplayMode(800, 600, false);
    game.start();
  }

  //our texture to blur
  Texture tex, tex2;
 
View Full Code Here

public class ShaderLesson2 extends SimpleGame {

  public static void main(String[] args) throws LWJGLException {
    Game game = new ShaderLesson2();
    game.setDisplayMode(640, 480, false);
    game.start();
  }

  //our texture
  Texture tex;
 
View Full Code Here

public class ShaderLesson6 extends SimpleGame {
 
  public static void main(String[] args) throws LWJGLException {
    Game game = new ShaderLesson6();
    game.setDisplayMode(800, 600, false);
    game.start();
  }

  //our texture to blur
  Texture rock, rockNormals;
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.