Example #1
0
        public ImFontGlyphPtr FindGlyph(ushort c)
        {
            ImFontGlyph *ret = ImGuiNative.ImFont_FindGlyph(NativePtr, c);

            return(new ImFontGlyphPtr(ret));
        }
Example #2
0
 public ImFontGlyphPtr(ImFontGlyph *nativePtr) => NativePtr = nativePtr;
Example #3
0
 public ImFontGlyphPtr(IntPtr nativePtr)
 {
     NativePtr = (ImFontGlyph *)nativePtr;
 }