From 9024cd9f7c32b30f1ca5a4d5c53569af7c72da48 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi <ebassi@linux.intel.com> Date: Mon, 26 Apr 2010 12:58:17 +0100 Subject: [PATCH] Clean up the Texture private data structure --- clutter/clutter-texture.c | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/clutter/clutter-texture.c b/clutter/clutter-texture.c index d133aa279..30ee49f12 100644 --- a/clutter/clutter-texture.c +++ b/clutter/clutter-texture.c @@ -71,25 +71,24 @@ typedef struct _ClutterTextureAsyncData ClutterTextureAsyncData; struct _ClutterTexturePrivate { - gint image_width; - gint image_height; + gint image_width; + gint image_height; - CoglHandle material; - gboolean no_slice; + CoglHandle material; - ClutterActor *fbo_source; - CoglHandle fbo_handle; + ClutterActor *fbo_source; + CoglHandle fbo_handle; - guint sync_actor_size : 1; - guint repeat_x : 1; - guint repeat_y : 1; - guint keep_aspect_ratio : 1; - guint load_size_async : 1; - guint load_data_async : 1; - guint load_async_set : 1; /* used to make load_async - possible */ + ClutterTextureAsyncData *async_data; - ClutterTextureAsyncData *async_data; + guint no_slice : 1; + guint sync_actor_size : 1; + guint repeat_x : 1; + guint repeat_y : 1; + guint keep_aspect_ratio : 1; + guint load_size_async : 1; + guint load_data_async : 1; + guint load_async_set : 1; /* used to make load_async possible */ }; struct _ClutterTextureAsyncData