diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-04-08 23:10:10 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-04-08 23:34:37 -0400 |
commit | e7963945bbb096f7ac5cbd3665d75e7cfc465b7d (patch) | |
tree | 61026f5a4ce22c0bf7b1445dfecdffa7171d2516 | |
parent | e4a6101ae067a1b0e6577e12a4c5bebc20e64a88 (diff) | |
download | gtk+-e7963945bbb096f7ac5cbd3665d75e7cfc465b7d.tar.gz |
ngl: Fix an oversight
All the rest of debug spew goes to stderr here.
-rw-r--r-- | gsk/ngl/gsknglcommandqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gsk/ngl/gsknglcommandqueue.c b/gsk/ngl/gsknglcommandqueue.c index bdfef2f35c..4ce1628e2f 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++) |