Package xenon3d.scene

Examples of xenon3d.scene.RestrictedAccessException


     * support double buffering has no effect.
     * @param enable if true, double buffering will be enabled
     * @throws IllegalStateException if the Canvas3D is already attached to a Container
     */
    public final void setDoubleBufferEnabled(boolean enable) {
        if (canvas != null) throw new RestrictedAccessException();
        if (isDoubleBufferAvailable() || !enable) caps.setDoubleBuffered(enable);
    }
View Full Code Here

TOP

Related Classes of xenon3d.scene.RestrictedAccessException

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.