Lines Matching refs:fgSurface
521 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F() local
524 fgSurface->mInputInfo.surfaceInset = 5; in TEST_F()
525 fgSurface->showAt(100, 100); in TEST_F()
528 fgSurface->expectTap(1, 1); in TEST_F()
536 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F() local
539 fgSurface->mInputInfo.surfaceInset = 5; in TEST_F()
540 fgSurface->mInputInfo.replaceTouchableRegionWithCrop = true; in TEST_F()
541 fgSurface->showAt(100, 100); in TEST_F()
544 fgSurface->expectTap(1, 1); in TEST_F()
574 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F() local
577 fgSurface->mInputInfo.surfaceInset = 5; in TEST_F()
578 fgSurface->showAt(100, 100); in TEST_F()
580 fgSurface->doTransaction([&](auto& t, auto& sc) { t.setMatrix(sc, 2.0, 0, 0, 4.0); }); in TEST_F()
584 fgSurface->expectTap(1, 1); in TEST_F()
592 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F() local
596 fgSurface->mInputInfo.surfaceInset = INT32_MAX; in TEST_F()
597 fgSurface->showAt(100, 100); in TEST_F()
599 fgSurface->doTransaction([&](auto& t, auto& sc) { t.setMatrix(sc, 2.0, 0, 0, 2.0); }); in TEST_F()
623 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F() local
630 fgSurface->mInputInfo.touchableRegion.orSelf(Rect{INT32_MIN, INT32_MIN, INT32_MAX, INT32_MAX}); in TEST_F()
632 fgSurface->showAt(100, 100); in TEST_F()
642 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F() local
645 fgSurface->mInputInfo.touchableRegion.orSelf(Rect{INT32_MIN, INT32_MIN, INT32_MAX, INT32_MAX}); in TEST_F()
646 fgSurface->showAt(0, 0); in TEST_F()
648 fgSurface->doTransaction([&](auto& t, auto& sc) { t.setMatrix(sc, 2.0, 0, 0, 2.0); }); in TEST_F()
707 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F() local
710 fgSurface->showAt(10, 10); in TEST_F()
713 fgSurface->expectTap(1, 1); in TEST_F()
715 fgSurface->doTransaction([](auto& t, auto& sc) { t.setAlpha(sc, 0.0); }); in TEST_F()
718 fgSurface->expectTap(1, 1); in TEST_F()