From f77e28924e96f1377990a273b7a9c43e403f0a69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Wed, 12 Oct 2022 10:59:40 +0200 Subject: [PATCH] main: Untabify (MR 24) Don't mix tab and spaces. This makes untabifying after changes simpler. --- src/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.c b/src/main.c index ea867ee..fd0a74c 100644 --- a/src/main.c +++ b/src/main.c @@ -373,9 +373,9 @@ preview_draw(GtkGLArea *area, GdkGLContext *ctx, gpointer data) GLfloat cos_rot = rotation_list[(4 + rotation_index - 1) % 4]; GLfloat matrix[9] = { // clang-format off - cos_rot, sin_rot, 0, - -sin_rot, cos_rot, 0, - 0, 0, 1, + cos_rot, sin_rot, 0, + -sin_rot, cos_rot, 0, + 0, 0, 1, // clang-format on }; glUniformMatrix3fv(blit_uniform_transform, 1, GL_FALSE, matrix);