From 4ea8b91e0bfb3ce5cae0870075a9e566b00a87d8 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Tue, 27 Aug 2013 15:58:14 -0400 Subject: [PATCH] shaped-texture: Fix indentation --- src/compositor/meta-shaped-texture.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/compositor/meta-shaped-texture.c b/src/compositor/meta-shaped-texture.c index 0bb6689d2..79e515e82 100644 --- a/src/compositor/meta-shaped-texture.c +++ b/src/compositor/meta-shaped-texture.c @@ -191,19 +191,19 @@ meta_shaped_texture_paint (ClutterActor *actor) priv->pipeline_unshaped = cogl_pipeline_copy (pipeline_unshaped_template); } - pipeline = priv->pipeline_unshaped; + pipeline = priv->pipeline_unshaped; } else { if (priv->pipeline == NULL) { - if (G_UNLIKELY (pipeline_template == NULL)) + if (G_UNLIKELY (pipeline_template == NULL)) { CoglContext *ctx = clutter_backend_get_cogl_context (clutter_get_default_backend ()); pipeline_template = cogl_pipeline_new (ctx); cogl_pipeline_set_layer_combine (pipeline_template, 1, - "RGBA = MODULATE (PREVIOUS, TEXTURE[A])", - NULL); + "RGBA = MODULATE (PREVIOUS, TEXTURE[A])", + NULL); } priv->pipeline = cogl_pipeline_copy (pipeline_template); }