GenImageFontAtlas method

ImageC GenImageFontAtlas(
  1. Pointer<GlyphInfoC> glyphs,
  2. Pointer<Pointer<RectangleC>> glyphRecs,
  3. int glyphCount,
  4. int fontSize,
  5. int padding,
  6. int packMethod,
)

Implementation

ImageC GenImageFontAtlas(
  Pointer<GlyphInfoC> glyphs,
  Pointer<Pointer<RectangleC>> glyphRecs,
  int glyphCount,
  int fontSize,
  int padding,
  int packMethod,
) {
  return _GenImageFontAtlas(
    glyphs,
    glyphRecs,
    glyphCount,
    fontSize,
    padding,
    packMethod,
  );
}