Lines Matching refs:fgSurface
330 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F() local
333 fgSurface->mInputInfo.surfaceInset = 5; in TEST_F()
334 fgSurface->showAt(100, 100); in TEST_F()
337 fgSurface->expectTap(1, 1); in TEST_F()
367 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F() local
370 fgSurface->mInputInfo.surfaceInset = 5; in TEST_F()
371 fgSurface->showAt(100, 100); in TEST_F()
373 fgSurface->doTransaction([&](auto &t, auto &sc) { t.setMatrix(sc, 2.0, 0, 0, 4.0); }); in TEST_F()
377 fgSurface->expectTap(1, 1); in TEST_F()
384 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F() local
386 fgSurface->mInputInfo.surfaceInset = INT32_MAX; in TEST_F()
387 fgSurface->showAt(100, 100); in TEST_F()
389 fgSurface->doTransaction([&](auto &t, auto &sc) { t.setMatrix(sc, 2.0, 0, 0, 2.0); }); in TEST_F()
393 fgSurface->expectTap(1, 1); in TEST_F()
448 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F() local
451 fgSurface->showAt(10, 10); in TEST_F()
454 fgSurface->expectTap(1, 1); in TEST_F()
456 fgSurface->doTransaction([](auto &t, auto &sc) { t.setAlpha(sc, 0.0); }); in TEST_F()
459 fgSurface->expectTap(1, 1); in TEST_F()