1
0
Fork 0

Test slicing when getting data in both directions

http://bugzilla.clutter-project.org/show_bug.cgi?id=2414
This commit is contained in:
Owen W. Taylor 2010-11-12 10:58:59 -05:00 committed by Neil Roberts
parent a53b9febcd
commit d52bd995a6

View file

@ -101,6 +101,8 @@ paint_cb (void)
/* Try with a really big texture in the hope that it will end up /* Try with a really big texture in the hope that it will end up
sliced. */ sliced. */
check_texture (4, 5128, COGL_TEXTURE_NO_ATLAS); check_texture (4, 5128, COGL_TEXTURE_NO_ATLAS);
/* And in the other direction. */
check_texture (5128, 4, COGL_TEXTURE_NO_ATLAS);
clutter_main_quit (); clutter_main_quit ();
} }