struct ImDrawCmd

Overview

#include <imgui.h>

struct ImDrawCmd
{
    // fields

    ImVec4 ClipRect;
    ImTextureRef TexRef;
    unsigned int VtxOffset;
    unsigned int IdxOffset;
    unsigned int ElemCount;
    ImDrawCallback UserCallback;
    void* UserCallbackData;
    int UserCallbackDataSize;
    int UserCallbackDataOffset;

    // methods

    ImTextureID GetTexID() const;
};