From dbbac62a8479a0fbdb2d833c3d34cf810660505e Mon Sep 17 00:00:00 2001 From: Merwan Achibet Date: Thu, 8 Jun 2017 13:45:24 +0200 Subject: [PATCH] Add ImGuilistClipper struct under CIMGUI_DEFINE_ENUMS_AND_STRUCTS --- cimgui/cimgui.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cimgui/cimgui.h b/cimgui/cimgui.h index 579f67b..5f25ff5 100644 --- a/cimgui/cimgui.h +++ b/cimgui/cimgui.h @@ -387,6 +387,13 @@ struct ImFontConfig { char Name[32]; struct ImFont* DstFont; }; + +struct ImGuiListClipper +{ + float StartPosY; + float ItemsHeight; + int ItemsCount, StepNo, DisplayStart, DisplayEnd; +}; #endif // CIMGUI_DEFINE_ENUMS_AND_STRUCTS CIMGUI_API struct ImGuiIO* igGetIO();