gltextureatlas: Use more correct debug name for texture

These aren't all glyph atlases anymore.
This commit is contained in:
Timm Bäder
2019-12-17 09:07:34 +01:00
parent 2cbfb0e980
commit f1751f514c

View File

@@ -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);
}