struct ExampleAppLog

Overview

struct ExampleAppLog
{
    // fields

    ImGuiTextBuffer Buf;
    ImGuiTextFilter Filter;
    ImVector<int> LineOffsets;
    bool AutoScroll;

    // methods

    void Clear();

    void AddLog(
        const char* fmt,
        ...
        );

    void Draw(
        const char* title,
        bool* p_open = NULL
        );
};