--- a/src/texture.c Sat Apr 19 12:54:49 2025 +0200 +++ b/src/texture.c Sat Apr 19 13:00:32 2025 +0200 @@ -78,10 +78,10 @@ texture_filters[min_filter]); glTexParameteri(tex->target, GL_TEXTURE_MAG_FILTER, texture_filters[mag_filter]); - asc_dprintf("Generated new texture for text node: %u", tex->tex_id); + asc_dprintf("Initialized texture: %u", tex->tex_id); } void asc_texture_destroy(AscTexture *tex) { - asc_dprintf("Release text node texture: %u", tex->tex_id); + asc_dprintf("Destroy texture: %u", tex->tex_id); glDeleteTextures(1, &tex->tex_id); }