Microsoft.Xna.Framework.AndroidGamePlatform.Present C# (CSharp) Method

Present() public method

public Present ( ) : void
return void
        public override void Present()
        {
            try
            {
                var device = Game.GraphicsDevice;
                if (device != null)
                    device.Present();

				_gameWindow.GameView.SwapBuffers();
            }
            catch (Exception ex)
            {
                Android.Util.Log.Error("Error in swap buffers", ex.ToString());
            }
        }
    }