Package org.xith3d.render.config

Examples of org.xith3d.render.config.CanvasConstructionInfo


    this.resourceLocation = resourceLocation;
  }

  public CanvasConstructionInfo getCanvasConstructionInfo() {
   
    CanvasConstructionInfo canvasConstructionInfo = new CanvasConstructionInfo( width, height, bpp, fullScreen, vSync, title );
   
    canvasConstructionInfo.setFSAAMode( FSAA.valueOf( fsaa ) );
    canvasConstructionInfo.setOpenGLLayer( OpenGLLayer.valueOf( openGlLayer ) );
   
    return canvasConstructionInfo;
  }
View Full Code Here

TOP

Related Classes of org.xith3d.render.config.CanvasConstructionInfo

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.