struct ImFontGlyph

Overview

#include <imgui.h>

struct ImFontGlyph
{
    // fields

    unsigned int Colored : 1;
    unsigned int Visible : 1;
    unsigned int SourceIdx : 4;
    unsigned int Codepoint : 26;
    float AdvanceX;
    float X0;
    float Y0;
    float X1;
    float Y1;
    float U0;
    float V0;
    float U1;
    float V1;
    int PackId;
};