Cairo.NativeMethods.cairo_show_glyphs C# (CSharp) Метод

cairo_show_glyphs() приватный Метод

private cairo_show_glyphs ( IntPtr ct, IntPtr glyphs, int num_glyphs ) : void
ct IntPtr
glyphs IntPtr
num_glyphs int
Результат void
        internal static extern void cairo_show_glyphs(IntPtr ct, IntPtr glyphs, int num_glyphs);

Usage Example

Пример #1
0
        public void ShowGlyphs(Glyph[] glyphs)
        {
            IntPtr ptr;

            ptr = FromGlyphToUnManagedMemory(glyphs);

            NativeMethods.cairo_show_glyphs(state, ptr, glyphs.Length);

            Marshal.FreeHGlobal(ptr);
        }
All Usage Examples Of Cairo.NativeMethods::cairo_show_glyphs
NativeMethods