Home | History | Annotate | Download | only in tests

Lines Matching defs:crop

485     Rect crop = mST->getCurrentCrop();
486 EXPECT_EQ(0, crop.left);
487 EXPECT_EQ(0, crop.top);
488 EXPECT_EQ(4, crop.right);
489 EXPECT_EQ(4, crop.bottom);
613 android_native_rect_t crop;
614 crop.left = 0;
615 crop.top = 0;
616 crop.right = 5;
617 crop.bottom = 5;
622 ASSERT_EQ(OK, native_window_set_crop(mANW.get(), &crop));
629 // transform matrix to avoid texturing outside the crop region.