Lines Matching refs:props
29 RenderProperties props; in TEST() local
32 props.setLeftTopRightBottom(0, 0, 100, 100); in TEST()
33 ASSERT_TRUE(props.fitsOnLayer()); in TEST()
34 props.setLeftTopRightBottom(100, 2000, 300, 4000); in TEST()
35 ASSERT_TRUE(props.fitsOnLayer()); in TEST()
36 props.setLeftTopRightBottom(-10, -10, 510, 512); in TEST()
37 ASSERT_TRUE(props.fitsOnLayer()); in TEST()
40 props.setLeftTopRightBottom(0, 0, maxTextureSize + 1, maxTextureSize + 1); in TEST()
41 ASSERT_FALSE(props.fitsOnLayer()); in TEST()
44 props.setLeftTopRightBottom(0, 0, 100, 0); in TEST()
45 ASSERT_TRUE(props.fitsOnLayer()); in TEST()