2007-11-20 Emmanuele Bassi <ebassi@openedhand.com>
authorEmmanuele Bassi <ebassi@openedhand.com>
Tue, 20 Nov 2007 15:45:59 +0000 (15:45 +0000)
committerEmmanuele Bassi <ebassi@openedhand.com>
Tue, 20 Nov 2007 15:45:59 +0000 (15:45 +0000)
* clutter/clutter-texture.c (clutter_texture_init): Set filter-quality
value to 1, to fix the regression caused when applying the patch for
buf #616.

ChangeLog
clutter/clutter-texture.c

index 9eba65b..2c646f1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-11-20  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * clutter/clutter-texture.c (clutter_texture_init): Set filter-quality
+       value to 1, to fix the regression caused when applying the patch for
+       buf #616.
+
 2007-11-19  Emmanuele Bassi  <ebassi@openedhand.com>
 
        * clutter/clutter-label.[ch]: Fix ClutterLabel size allocation when
index 74ad396..551cd0a 100644 (file)
@@ -1073,7 +1073,7 @@ clutter_texture_init (ClutterTexture *self)
   self->priv = priv = CLUTTER_TEXTURE_GET_PRIVATE (self);
 
   priv->max_tile_waste  = 64;
-  priv->filter_quality  = 0;
+  priv->filter_quality  = 1;
   priv->is_tiled        = TRUE;
   priv->pixel_type      = PIXEL_TYPE;
   priv->pixel_format    = CGL_RGBA;