LongoMatch.Drawing.Widgets.Blackboard.Draw C# (CSharp) Méthode

Draw() public méthode

public Draw ( IContext context, Area area ) : void
context IContext
area LongoMatch.Core.Common.Area
Résultat void
        public override void Draw(IContext context, Area area)
        {
            tk.Context = context;
            tk.Begin ();
            tk.Clear (Config.Style.PaletteBackground);
            tk.End ();

            base.Draw (context, area);
            if (backbuffer != null) {
                Begin (context);
                tk.DrawSurface (backbuffer);
                End ();
            }
        }