struct ImGuiListClipperRange

Overview

#include <imgui_internal.h>

struct ImGuiListClipperRange
{
    // fields

    int Min;
    int Max;
    bool PosToIndexConvert;
    ImS8 PosToIndexOffsetMin;
    ImS8 PosToIndexOffsetMax;

    // methods

    static ImGuiListClipperRange FromIndices(
        int min,
        int max
        );

    static ImGuiListClipperRange FromPositions(
        float y1,
        float y2,
        int off_min,
        int off_max
        );
};