template struct ImPlot::RendererStairsPostShaded

Overview

template <class _Getter, class _GetterColor>
struct RendererStairsPostShaded: public ImPlot::RendererBase
{
    // fields

    const _Getter& Getter;
    const _GetterColor& GetterColor;
    float Y0;
    ImVec2 P1;
    ImVec2 UV;

    // construction

    RendererStairsPostShaded(
        const _Getter& getter,
        const _GetterColor& getter_color
        );

    // methods

    void Init(ImDrawList& draw_list) const;

    IMPLOT_INLINE bool Render(
        ImDrawList& draw_list,
        const ImRect& cull_rect,
        int prim
        ) const;
};