Add support for hidden windows, hide on munit tests

This commit is contained in:
Joshua Granick
2016-08-10 11:07:31 -07:00
parent 0aac32f551
commit 2918876ede
5 changed files with 20 additions and 6 deletions

View File

@@ -65,7 +65,10 @@ namespace lime {
WINDOW_FLAG_REQUIRE_SHADERS = 0x00000100,
WINDOW_FLAG_DEPTH_BUFFER = 0x00000200,
WINDOW_FLAG_STENCIL_BUFFER = 0x00000400,
WINDOW_FLAG_ALLOW_HIGHDPI = 0x00000800
WINDOW_FLAG_ALLOW_HIGHDPI = 0x00000800,
WINDOW_FLAG_HIDDEN = 0x00001000,
WINDOW_FLAG_MINIMIZED = 0x00002000,
WINDOW_FLAG_MAXIMIZED = 0x00004000
};