/// <summary> /// Make sure that a glyph slot owns ‘slot->bitmap’. /// </summary> /// <remarks> /// This function is to be used in combination with <see cref="FTBitmap.Embolden"/>. /// </remarks> public void OwnBitmap() { Error err = FT.FT_GlyphSlot_Own_Bitmap(Reference); if (err != Error.Ok) { throw new FreeTypeException(err); } }