Add gfx_debug console command

This commit is contained in:
Jonathan G Rennison
2020-10-02 02:10:09 +01:00
parent a474e71243
commit d29a08dfe1
5 changed files with 66 additions and 16 deletions

View File

@@ -156,6 +156,12 @@ static inline int CenterBounds(int min, int max, int size)
}
/* window.cpp */
enum DrawOverlappedWindowFlags {
DOWF_NONE = 0,
DOWF_MARK_DIRTY = 1 << 0,
DOWF_SHOW_DEBUG = 1 << 1,
};
DECLARE_ENUM_AS_BIT_SET(DrawOverlappedWindowFlags)
void DrawOverlappedWindowForAll(int left, int top, int right, int bottom);
void SetMouseCursorBusy(bool busy);