From 8af97ebc77963a90897b703c29059abf55a20be8 Mon Sep 17 00:00:00 2001 From: rexim Date: Tue, 6 Jul 2021 23:08:19 +0700 Subject: [PATCH] Add TODO(#19) --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 6bc1a87..266eca8 100644 --- a/src/main.c +++ b/src/main.c @@ -450,7 +450,7 @@ int main(int argc, char **argv) { int w, h; SDL_GetWindowSize(window, &w, &h); - // TODO: update the viewport and the resolution only on actual window change + // TODO(#19): update the viewport and the resolution only on actual window change glViewport(0, 0, w, h); glUniform2f(resolution_uniform, (float) w, (float) h); }