Package org.jdesktop.wonderland.modules.appbase.client

Examples of org.jdesktop.wonderland.modules.appbase.client.DrawingSurfaceBufferedImage


     * @param pixelScale The size of the window pixels.
     * @param name The name of the window.
     */
    public WindowSwing(App2D app, int width, int height, boolean decorated, Vector2f pixelScale,
                       String name) {
        super(app, width, height, decorated, pixelScale, name, new DrawingSurfaceBufferedImage());
        initializeViews();
    }
View Full Code Here


     * @param name The name of the window.
     */
    public WindowSwing(App2D app, Type type, Window2D parent, int width, int height, boolean decorated,
                    Vector2f pixelScale, String name) {
        super(app, type, parent, width, height, decorated, pixelScale, name,
              new DrawingSurfaceBufferedImage());
        initializeViews();
    }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.modules.appbase.client.DrawingSurfaceBufferedImage

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.