DRAFT feature for showing test pattern on output window

This commit is contained in:
Bruno Herbelin
2023-02-28 00:24:19 +01:00
parent 93f433f388
commit bc439829cf
6 changed files with 74 additions and 10 deletions

View File

@@ -63,9 +63,10 @@ struct WindowConfig
bool scaled;
bool decorated;
std::string monitor;
bool show_pattern;
WindowConfig() : name(APP_TITLE), x(15), y(15), w(1280), h(720),
fullscreen(false), scaled(false), decorated(true), monitor("") { }
fullscreen(false), scaled(false), decorated(true), monitor(""), show_pattern(false) { }
};