Axiom.RenderSystems.OpenGL.OpenTKWindow.Resize C# (CSharp) Метод

Resize() публичный Метод

public Resize ( int width, int height ) : void
width int
height int
Результат void
		public override void Resize( int width, int height )
		{
            if (_window == null)
            {
                this.width = width;
                this.height = height;
                this.WindowMovedOrResized();
            }
            else
            {
                _window.Width = width;
                _window.Height = height;
                WindowEventMonitor.Instance.WindowResized(this);
            }
		}