1
0
Fork 0

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

* clutter/clutter-texture.c: (clutter_texture_new_from_actor):
        Fix typo breaking FBO rendering on anything other than a cloned
        texture.
This commit is contained in:
Matthew Allum 2008-02-01 16:54:48 +00:00
parent 8366a906e2
commit b14da429e0
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2008-02-01 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-texture.c: (clutter_texture_new_from_actor):
Fix typo breaking FBO rendering on anything other than a cloned
texture.
2008-02-01 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-feature.h:

View file

@ -2185,7 +2185,7 @@ clutter_texture_new_from_actor (ClutterActor *actor)
priv->fbo_handle = cogl_offscreen_create (priv->tiles[0]);
clutter_actor_set_size (actor, w, h);
clutter_actor_set_size (texture, w, h);
return CLUTTER_ACTOR(texture);
}