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);
            }
		}