Example usage for com.badlogic.gdx.backends.jogamp JoglNewtApplicationConfiguration JoglNewtApplicationConfiguration

List of usage examples for com.badlogic.gdx.backends.jogamp JoglNewtApplicationConfiguration JoglNewtApplicationConfiguration

Introduction

In this page you can find the example usage for com.badlogic.gdx.backends.jogamp JoglNewtApplicationConfiguration JoglNewtApplicationConfiguration.

Prototype

public JoglNewtApplicationConfiguration() 

Source Link

Usage

From source file:org.ah.gcc.rover.desktop.RPIDesktopLauncherJogl.java

License:Open Source License

public static void main(String[] arg) {
    JoglNewtApplicationConfiguration config = new JoglNewtApplicationConfiguration();
    config.width = 640;//from  w  w w .  j  ava2s  . co  m
    config.height = 480;

    new JoglNewtApplication(new DesktopGCCRoverController(new RPiDesktopPlatformSpecfic()), config);
}