public void DecRef(object parameters, string fontid)
        {
            TTFTextFontStoreFont fnt = TTFTextFontStore.Instance.GetEmbeddedFont(fontid);

            if (fnt != null)
            {
                fnt.decref();
                TTFTextFontStore.Instance.SetGarbageCollectUnusedFonts();
            }
        }