111112113114115116117118119120121
try { Renderer.setRenderer(Renderer.VERTEX_ARRAY_RENDERER); AppGameContainer container = new AppGameContainer(new GradientTest()); container.setDisplayMode(800,600,false); container.start(); } catch (SlickException e) { e.printStackTrace(); } }
7475767778798081828384
*/ public static void main(String[] argv) { try { AppGameContainer container = new AppGameContainer(new AlphaMapTest()); container.setDisplayMode(800,600,false); container.start(); } catch (SlickException e) { e.printStackTrace(); } } }
101102103104105106107108109110111
*/ public static void main(String[] argv) { try { AppGameContainer container = new AppGameContainer(new TransformTest()); container.setDisplayMode(640,480,false); container.start(); } catch (SlickException e) { e.printStackTrace(); } } }
8687888990919293949596
public static void main(String[] argv) { try { AppGameContainer container = new AppGameContainer( new MorphShapeTest()); container.setDisplayMode(800, 600, false); container.start(); } catch (SlickException e) { e.printStackTrace(); } } }
7071727374757677787980
*/ public static void main(String[] argv) { try { AppGameContainer container = new AppGameContainer(new BigSpriteSheetTest()); container.setDisplayMode(800,600,false); container.start(); } catch (SlickException e) { e.printStackTrace(); } }
157158159160161162163164165166167
try { GraphicsFactory.setUseFBO(false); AppGameContainer container = new AppGameContainer(new ImageGraphicsTest()); container.setDisplayMode(800,600,false); container.start(); } catch (SlickException e) { e.printStackTrace(); } } }
4142434445464748495051
*/ public static void main(String[] args) { try { AppGameContainer container = new AppGameContainer(new ImageBufferEndianTest()); container.setDisplayMode(800,600,false); container.start(); } catch (SlickException e) { e.printStackTrace(); } }
8081828384858687888990
*/ public static void main(String[] argv) { try { AppGameContainer container = new AppGameContainer(new TexturePaintTest()); container.setDisplayMode(800,600,false); container.start(); } catch (SlickException e) { e.printStackTrace(); } } }
9293949596979899100101102
}; AppGameContainer container = new AppGameContainer(game); container.setDisplayMode(800,600,false); container.start(); } catch (SlickException e) { e.printStackTrace(); } } }
295296297298299300301302303304305
*/ public static void main(String[] argv) { try { AppGameContainer container = new AppGameContainer(new GeomAccuracyTest()); container.setDisplayMode(800, 600, false); container.start(); } catch (SlickException e) { e.printStackTrace(); } } }