Better GL screen widget, initialize it to red as a test

This commit is contained in:
wheremyfoodat
2023-09-30 13:44:54 +03:00
parent b8032c8286
commit 45a80c9e39
3 changed files with 36 additions and 19 deletions

View File

@@ -12,6 +12,7 @@ int main(int argc, char *argv[]) {
window.setWindowTitle("Alber");
ScreenWidget screen(&window);
screen.show();
screen.resize(320, 240);
return app.exec();
}