From d52bd995a6a5012fc363b607a9ac79b2748087db Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Fri, 12 Nov 2010 10:58:59 -0500 Subject: [PATCH] Test slicing when getting data in both directions http://bugzilla.clutter-project.org/show_bug.cgi?id=2414 --- tests/conform/test-cogl-texture-get-set-data.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/conform/test-cogl-texture-get-set-data.c b/tests/conform/test-cogl-texture-get-set-data.c index f22df23fa..84206ff67 100644 --- a/tests/conform/test-cogl-texture-get-set-data.c +++ b/tests/conform/test-cogl-texture-get-set-data.c @@ -101,6 +101,8 @@ paint_cb (void) /* Try with a really big texture in the hope that it will end up sliced. */ check_texture (4, 5128, COGL_TEXTURE_NO_ATLAS); + /* And in the other direction. */ + check_texture (5128, 4, COGL_TEXTURE_NO_ATLAS); clutter_main_quit (); }