ngl: Drop an unused struct member

GskNglGlyphLibrary.hash_table wasn't used.
This commit is contained in:
Matthias Clasen 2021-03-19 14:05:15 -04:00
parent 9981f19409
commit 5ac7f7c2f6
2 changed files with 0 additions and 2 deletions

View File

@ -98,7 +98,6 @@ gsk_ngl_glyph_library_finalize (GObject *object)
{
GskNglGlyphLibrary *self = (GskNglGlyphLibrary *)object;
g_clear_pointer (&self->hash_table, g_hash_table_unref);
g_clear_pointer (&self->surface_data, g_free);
G_OBJECT_CLASS (gsk_ngl_glyph_library_parent_class)->finalize (object);

View File

@ -55,7 +55,6 @@ G_DECLARE_FINAL_TYPE (GskNglGlyphLibrary, gsk_ngl_glyph_library, GSK, NGL_GLYPH_
struct _GskNglGlyphLibrary
{
GskNglTextureLibrary parent_instance;
GHashTable *hash_table;
guint8 *surface_data;
gsize surface_data_len;
struct {