TestTriangle

This commit is contained in:
2026-02-04 09:04:44 -06:00
parent 07b4518cb4
commit e67df40233
2 changed files with 26 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ namespace Archimedes {
void render(std::list<std::function<void()>> cmdList, int& w, int& h) {
glViewport(0, 0, w, h);
glClearColor(0.2, 0.2, 0.4, 1);
glClear(GL_COLOR_BUFFER_BIT);
for(auto f : cmdList)