public static SKShader CreatePicture (SKPicture src, SKShaderTileMode tmx, SKShaderTileMode tmy) { if (src == null) throw new ArgumentNullException (nameof (src)); return src.ToShader (tmx, tmy); }
public static SKShader CreatePicture (SKPicture src, SKShaderTileMode tmx, SKShaderTileMode tmy, SKMatrix localMatrix, SKRect tile) { if (src == null) throw new ArgumentNullException (nameof (src)); return src.ToShader (tmx, tmy, localMatrix, tile); }