Beispiel #1
0
        /// <summary>
        /// Frees all resources used by this <see cref="QFontData"/> object
        /// </summary>
        public void Dispose()
        {
            // release all textures
            foreach (var page in Pages)
            {
                page.Dispose();
            }

            // and also all sub-fonts if there
            DropShadowFont?.Dispose();
        }