Home
last modified time | relevance | path

Searched refs:rotate270 (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/ui/gfx/
Dskbitmap_operations_unittest.cc554 SkBitmap rotate90, rotate180, rotate270; in TEST() local
559 rotate270 = SkBitmapOperations::Rotate(src, in TEST()
566 ASSERT_EQ(rotate270.width(), src.height()); in TEST()
567 ASSERT_EQ(rotate270.height(), src.width()); in TEST()
572 SkAutoLockPixels lock_270(rotate270); in TEST()
577 ASSERT_EQ(*src.getAddr32(x,y), *rotate270.getAddr32(y, src_w - (x+1))); in TEST()