SurfaceFactory.java :  » Java-3D » ferox-gl » com » ferox » renderer » impl2 » Java Open Source

Java Open Source » Java 3D » ferox gl 
ferox gl » com » ferox » renderer » impl2 » SurfaceFactory.java
package com.ferox.renderer.impl2;

import com.ferox.renderer.OnscreenSurfaceOptions;
import com.ferox.renderer.TextureSurfaceOptions;

public interface SurfaceFactory {
    public AbstractTextureSurface createTextureSurface(AbstractFramework framework, TextureSurfaceOptions options, 
                                                       OpenGLContextAdapter sharedContext);
    
    public AbstractOnscreenSurface createOnscreenSurface(AbstractFramework framework, OnscreenSurfaceOptions options, 
                                                         OpenGLContextAdapter sharedContext);
    
    public OpenGLContextAdapter createShadowContext(OpenGLContextAdapter sharedContext);
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.