From b3318688f8ab5092dca1ce598f9cca829a0a9392 Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Thu, 10 Sep 2020 14:10:28 -0300 Subject: [PATCH] cogl/matrix: Don't debug-print inverse matrix All multiplication functions need to go away eventually, and this is the penultimate place we're ising the 4x4 multiplication function. Remove it. https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1439 --- cogl/cogl/cogl-matrix.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/cogl/cogl/cogl-matrix.c b/cogl/cogl/cogl-matrix.c index 97e52a5c1..904a6edb7 100644 --- a/cogl/cogl/cogl-matrix.c +++ b/cogl/cogl/cogl-matrix.c @@ -390,13 +390,7 @@ _cogl_matrix_prefix_print (const char *prefix, const CoglMatrix *matrix) print_matrix_floats (prefix, (float *)matrix); g_print ("%sInverse: \n", prefix); if (!(matrix->flags & MAT_DIRTY_INVERSE)) - { - float prod[16]; - print_matrix_floats (prefix, matrix->inv); - matrix_multiply4x4 (prod, (float *)matrix, matrix->inv); - g_print ("%sMat * Inverse:\n", prefix); - print_matrix_floats (prefix, prod); - } + print_matrix_floats (prefix, matrix->inv); else g_print ("%s - not available\n", prefix); }