* clutter/clutter-texture.c: removed spurious left over debug printf.

This commit is contained in:
Øyvind Kolås 2008-02-05 15:37:52 +00:00
parent 17f54fd7b8
commit 19e64c65d5
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2008-02-05 Øyvind Kolås <pippin@o-hand.com>
* clutter/clutter-texture.c: removed spurious left over debug printf.
2008-02-05 Øyvind Kolås <pippin@o-hand.com>
* clutter/clutter-texture.c: applied modified patch from Gwenole

View File

@ -1173,8 +1173,6 @@ texture_get_tile_pixbuf (ClutterTexture *texture, COGLuint texture_id, int bpp)
tex_height = clutter_util_next_p2 (priv->height);
}
g_print ("%i %i\n", tex_width, tex_height);
if ((pixels = g_malloc (((tex_width * bpp + 3) &~ 3) * tex_height)) == NULL)
return NULL;