FontWrapper.cpp 260 B

12345678
  1. #include "imguiWrappedHeader.h"
  2. #include "FontWrapper.h"
  3. IggFontGlyph iggFontFindGlyph(IggFont handle, unsigned int c)
  4. {
  5. ImFont *font = reinterpret_cast<ImFont *>(handle);
  6. return static_cast<IggFontGlyph>(const_cast<ImFontGlyph *>(font->FindGlyph(c)));
  7. }