From d0cb76fff428dd4133c6bb261df192ca16aa29a1 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 8 Apr 2021 23:10:10 -0400 Subject: [PATCH] ngl: Fix an oversight All the rest of debug spew goes to stderr here. --- gsk/ngl/gsknglcommandqueue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gsk/ngl/gsknglcommandqueue.c b/gsk/ngl/gsknglcommandqueue.c index e160076c57..73f21b6e6d 100644 --- a/gsk/ngl/gsknglcommandqueue.c +++ b/gsk/ngl/gsknglcommandqueue.c @@ -169,7 +169,7 @@ gsk_ngl_command_queue_print_batch (GskNglCommandQueue *self, for (guint i = 0; i < batch->draw.bind_count; i++) { const GskNglCommandBind *bind = &self->batch_binds.items[batch->draw.bind_offset + i]; - g_print (" Bind[%d]: %u\n", bind->texture, bind->id); + g_printerr (" Bind[%d]: %u\n", bind->texture, bind->id); } for (guint i = 0; i < batch->draw.uniform_count; i++)