summaryrefslogtreecommitdiff
path: root/gsk
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2019-12-17 09:07:34 +0100
committerTimm Bäder <mail@baedert.org>2020-01-07 17:27:16 +0100
commitf1751f514cd5b998a92e02f8086abc3a2c35341d (patch)
tree4dc4b7c9c00381027206cc5231919d2df2aa5d96 /gsk
parent2cbfb0e980348cb9cfd1184fea2eec2763aa1ca3 (diff)
downloadgtk+-f1751f514cd5b998a92e02f8086abc3a2c35341d.tar.gz
gltextureatlas: Use more correct debug name for texture
These aren't all glyph atlases anymore.
Diffstat (limited to 'gsk')
-rw-r--r--gsk/gl/gskgltextureatlas.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gsk/gl/gskgltextureatlas.c b/gsk/gl/gskgltextureatlas.c
index b974f42fbc..c1e03bc826 100644
--- a/gsk/gl/gskgltextureatlas.c
+++ b/gsk/gl/gskgltextureatlas.c
@@ -304,5 +304,5 @@ gsk_gl_texture_atlas_realize (GskGLTextureAtlas *atlas)
atlas->texture_id = create_shared_texture (atlas->width, atlas->height);
gdk_gl_context_label_object_printf (gdk_gl_context_get_current (),
GL_TEXTURE, atlas->texture_id,
- "Glyph atlas %d", atlas->texture_id);
+ "Texture atlas %d", atlas->texture_id);
}