Allow DebugDraw not to flush the draw queue

This commit is contained in:
James Urquhart 2016-06-04 12:22:57 +01:00
parent 0ac3d95cb9
commit 1b2abbeaaa
2 changed files with 5 additions and 3 deletions

View file

@ -105,7 +105,9 @@ public:
static void init();
/// Called globally to render debug draw state. Also does state updates.
void render();
void render(bool clear=true);
bool willDraw() { return isDrawing && mHead; }
void toggleFreeze() { shouldToggleFreeze = true; };
void toggleDrawing()