hyades.Application.SetupGraphicsDeviceManager C# (CSharp) 메소드

SetupGraphicsDeviceManager() 보호된 메소드

protected SetupGraphicsDeviceManager ( GraphicsDeviceManager graphics ) : void
graphics GraphicsDeviceManager
리턴 void
        protected void SetupGraphicsDeviceManager(GraphicsDeviceManager graphics)
        {
            if (graphics != null)
            {
                graphics.IsFullScreen = FULLSCREEN;
                graphics.PreferredBackBufferWidth = WIDTH;
                graphics.PreferredBackBufferHeight = HEIGHT;
            }
        }