Lines Matching refs:sfc
28 auto sfc = dContext->priv().makeSFC( in test_basic_draw_as_src() local
32 sfc->clear(SkPMColor4f::FromBytes_RGBA(0xDDCCBBAA)); in test_basic_draw_as_src()
34 sfc->fillWithFP(std::move(fp)); in test_basic_draw_as_src()
35 TestReadPixels(reporter, dContext, sfc.get(), expectedPixelValues, in test_basic_draw_as_src()
43 if (auto sfc = rectContext->asFillContext()) { in test_clear() local
46 sfc->clear(SkPMColor4f::FromBytes_RGBA(color0)); in test_clear()
48 int w = sfc->width(); in test_clear()
49 int h = sfc->height(); in test_clear()
60 for (int i = 0; i < sfc->width() * sfc->height(); ++i) { in test_clear()
67 sfc->clear(rect, SkPMColor4f::FromBytes_RGBA(color1)); in test_clear()
82 TestReadPixels(reporter, dContext, sfc, expectedPixels.get(), "RectangleTexture-clear"); in test_clear()