mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
UpdateF, dx reinit
This commit is contained in:
parent
fa2cb7ba56
commit
e87bf5b029
24 changed files with 1029 additions and 415 deletions
|
@ -11767,7 +11767,6 @@ namespace IDE
|
|||
public override void Init()
|
||||
{
|
||||
scope AutoBeefPerf("IDEApp.Init");
|
||||
|
||||
//int zag = 123;
|
||||
|
||||
if (mVerbosity == .Default)
|
||||
|
@ -14203,7 +14202,7 @@ namespace IDE
|
|||
//mDebugger.InitiateHotResolve(.ActiveMethods | .Allocations);
|
||||
}
|
||||
|
||||
public override void Draw()
|
||||
public override void Draw(bool forceDraw)
|
||||
{
|
||||
scope AutoBeefPerf("IDEApp.Draw");
|
||||
#if CLI
|
||||
|
@ -14213,7 +14212,7 @@ namespace IDE
|
|||
if (mBfResolveSystem != null)
|
||||
{
|
||||
mBfResolveSystem.PerfZoneStart("IDEApp.Draw");
|
||||
base.Draw();
|
||||
base.Draw(forceDraw);
|
||||
mBfResolveSystem.PerfZoneEnd();
|
||||
if (mBfResolveSystem.mIsTiming)
|
||||
{
|
||||
|
@ -14222,7 +14221,7 @@ namespace IDE
|
|||
}
|
||||
}
|
||||
else
|
||||
base.Draw();
|
||||
base.Draw(forceDraw);
|
||||
}
|
||||
|
||||
public void DrawSquiggle(Graphics g, float x, float y, float width)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue