public override RenderWindow NewWindow(string name, int width, int height, bool fullScreen, NamedParameterList miscParams) { LogManager.Instance.Write("\tGLSupport NewWindow called"); var window = new AndroidWindow(this); window.Create(name, width, height, fullScreen, miscParams); return(window); }
public override RenderWindow NewWindow( string name, int width, int height, bool fullScreen, NamedParameterList miscParams ) { LogManager.Instance.Write( "\tGLSupport NewWindow called" ); var window = new AndroidWindow( this ); window.Create( name, width, height, fullScreen, miscParams ); return window; }