2008-02-06 Matthew Allum <mallum@openedhand.com>

* clutter/clutter-texture.c:
        Minor clean up from last commit.

        * tests/test-fbo.c:
        Swall tweak (rotate offscreen, rather than resize
This commit is contained in:
Matthew Allum
2008-02-06 14:50:15 +00:00
parent ccc58efad4
commit 3d802b172c
3 changed files with 13 additions and 12 deletions

View File

@ -2250,12 +2250,7 @@ clutter_texture_new_from_actor (ClutterActor *actor)
return NULL;
}
/* FIXME abs size - usually fails with 0,0 */
clutter_actor_get_abs_size (actor, &w, &h);
// printf("abs size is %ix%i\n", w, h);
/* Wont work with any kind of transform on actor */
//clutter_actor_get_size (actor, &w, &h);
if (w == 0 || h == 0)
return NULL;