commit 8af97ebc77963a90897b703c29059abf55a20be8
parent b690ca5d77a24ef0cd26eb8902b8f4675bf58dbd
Author: rexim <reximkut@gmail.com>
Date: Tue, 6 Jul 2021 23:08:19 +0700
Add TODO(#19)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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);
}