[gnome-shell/gbsneto/graphene: 3/4] st: Replace ClutterSize by graphene_size_t
- From: Georges Basile Stavracas Neto <gbsneto src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/gbsneto/graphene: 3/4] st: Replace ClutterSize by graphene_size_t
- Date: Tue, 26 Feb 2019 13:28:12 +0000 (UTC)
commit 77dfef6b2cea8d2e6de205c117956c7df109f9a2
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date: Wed Feb 20 10:33:42 2019 -0300
st: Replace ClutterSize by graphene_size_t
src/st/st-icon.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/st/st-icon.c b/src/st/st-icon.c
index b9c92c86c..074aefa37 100644
--- a/src/st/st-icon.c
+++ b/src/st/st-icon.c
@@ -56,7 +56,7 @@ struct _StIconPrivate
CoglPipeline *shadow_pipeline;
StShadow *shadow_spec;
- ClutterSize shadow_size;
+ graphene_size_t shadow_size;
};
G_DEFINE_TYPE_WITH_PRIVATE (StIcon, st_icon, ST_TYPE_WIDGET)
@@ -277,7 +277,7 @@ st_icon_clear_shadow_pipeline (StIcon *icon)
StIconPrivate *priv = icon->priv;
g_clear_pointer (&priv->shadow_pipeline, cogl_object_unref);
- clutter_size_init (&priv->shadow_size, 0, 0);
+ graphene_size_init (&priv->shadow_size, 0, 0);
}
static void
@@ -304,7 +304,7 @@ st_icon_update_shadow_pipeline (StIcon *icon)
priv->icon_texture);
if (priv->shadow_pipeline)
- clutter_size_init (&priv->shadow_size, width, height);
+ graphene_size_init (&priv->shadow_size, width, height);
}
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]