From 89712fc750a521df38fda5bf0b630b9599880a02 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 29 Jan 2024 02:06:39 -0500 Subject: [PATCH] gpu: Fix syntax confusion. --- gsk/gpu/gskgpudevice.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gsk/gpu/gskgpudevice.c b/gsk/gpu/gskgpudevice.c index 4e082cea39..fa897cf6f0 100644 --- a/gsk/gpu/gskgpudevice.c +++ b/gsk/gpu/gskgpudevice.c @@ -936,12 +936,12 @@ gsk_gpu_device_lookup_glyph_image (GskGpuDevice *self, cache = gsk_gpu_cached_new (self, &GSK_GPU_CACHED_GLYPH_CLASS, NULL); } - cache->font = g_object_ref (font), - cache->glyph = glyph, - cache->flags = flags, - cache->scale = scale, - cache->bounds = rect, - cache->image = image, + cache->font = g_object_ref (font); + cache->glyph = glyph; + cache->flags = flags; + cache->scale = scale; + cache->bounds = rect; + cache->image = image; cache->origin = GRAPHENE_POINT_INIT (- origin.x + subpixel_x, - origin.y + subpixel_y); ((GskGpuCached *) cache)->pixels = (rect.size.width + 2 * padding) * (rect.size.height + 2 * padding);