main: Untabify (MR 24)

Don't mix tab and spaces. This makes untabifying after changes simpler.
This commit is contained in:
Guido Günther
2022-10-12 10:59:40 +02:00
parent 8df79054c3
commit f77e28924e

View File

@@ -373,9 +373,9 @@ preview_draw(GtkGLArea *area, GdkGLContext *ctx, gpointer data)
GLfloat cos_rot = rotation_list[(4 + rotation_index - 1) % 4]; GLfloat cos_rot = rotation_list[(4 + rotation_index - 1) % 4];
GLfloat matrix[9] = { GLfloat matrix[9] = {
// clang-format off // clang-format off
cos_rot, sin_rot, 0, cos_rot, sin_rot, 0,
-sin_rot, cos_rot, 0, -sin_rot, cos_rot, 0,
0, 0, 1, 0, 0, 1,
// clang-format on // clang-format on
}; };
glUniformMatrix3fv(blit_uniform_transform, 1, GL_FALSE, matrix); glUniformMatrix3fv(blit_uniform_transform, 1, GL_FALSE, matrix);