Lines Matching refs:fProxy
560 Sk3DShader(SkShader* proxy) : fProxy(proxy) { in Sk3DShader()
566 SkSafeUnref(fProxy); in ~Sk3DShader()
573 if (fProxy) { in setContext()
574 return fProxy->setContext(device, paint, matrix); in setContext()
582 if (fProxy) { in shadeSpan()
583 fProxy->shadeSpan(x, y, span, count); in shadeSpan()
587 if (fProxy == NULL) { in shadeSpan()
601 if (fProxy) { in shadeSpan()
647 if (fProxy) { in beginSession()
648 fProxy->beginSession(); in beginSession()
653 if (fProxy) { in endSession()
654 fProxy->endSession(); in endSession()
662 fProxy = static_cast<SkShader*>(buffer.readFlattenable()); in Sk3DShader()
669 buffer.writeFlattenable(fProxy); in flatten()
682 SkShader* fProxy; member in Sk3DShader
692 : fProxy(proxy), f3DShader(shader), fKillProc(killProc) { in Sk3DBlitter()
698 fKillProc(fProxy); in ~Sk3DBlitter()
702 fProxy->blitH(x, y, width); in blitH()
707 fProxy->blitAntiH(x, y, antialias, runs); in blitAntiH()
711 fProxy->blitV(x, y, height, alpha); in blitV()
715 fProxy->blitRect(x, y, width, height); in blitRect()
723 fProxy->blitMask(mask, clip); in blitMask()
728 fProxy->blitMask(mask, clip); in blitMask()
733 SkBlitter* fProxy; member in Sk3DBlitter