コード例 #1
0
ファイル: FontFunctions.cs プロジェクト: sensokame/SkiaSharp
        public void SetVariationGlyphDelegate(VariationGlyphDelegate del, ReleaseDelegate destroy)
        {
            VerifyParameters(del);

            var ctx = DelegateProxies.CreateMulti(del, destroy);

            HarfBuzzApi.hb_font_funcs_set_variation_glyph_func(Handle, DelegateProxies.VariationGlyphProxy, ctx, DelegateProxies.ReleaseDelegateProxyForMulti);
        }
コード例 #2
0
ファイル: FontFunctions.cs プロジェクト: sensokame/SkiaSharp
 public void SetVariationGlyphDelegate(VariationGlyphDelegate del) =>
 SetVariationGlyphDelegate(del, null);