From 34e233e1c33adc2a53dd74cbfea1126d44deb771 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= Date: Fri, 17 Nov 2017 20:32:11 +0100 Subject: [PATCH] GskVulkanGlyphCache: Remove unused struct member --- gsk/gskvulkanglyphcache.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/gsk/gskvulkanglyphcache.c b/gsk/gskvulkanglyphcache.c index c326c568db..a17717f7d9 100644 --- a/gsk/gskvulkanglyphcache.c +++ b/gsk/gskvulkanglyphcache.c @@ -23,7 +23,6 @@ typedef struct { - cairo_surface_t *surface; GskVulkanImage *image; int width, height; int x, y, y0; @@ -79,8 +78,6 @@ free_atlas (gpointer v) { Atlas *atlas = v; - if (atlas->surface) - cairo_surface_destroy (atlas->surface); g_clear_object (&atlas->image); g_list_free_full (atlas->dirty_glyphs, dirty_glyph_free); g_free (atlas);