Add ImGuilistClipper struct under CIMGUI_DEFINE_ENUMS_AND_STRUCTS

This commit is contained in:
Merwan Achibet
2017-06-08 13:45:24 +02:00
committed by Stephan Dilly
parent 389c1f1ad1
commit dbbac62a84

View File

@@ -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();