#include "ListClipper.h" #include "WrapperConverter.h" #include "imguiWrappedHeader.h" IggListClipper iggNewListClipper() { ImGuiListClipper *clipper = new ImGuiListClipper(); return static_cast(clipper); } int iggListClipperDisplayStart(IggListClipper handle) { ImGuiListClipper *clipper = reinterpret_cast(handle); return clipper->DisplayStart; } int iggListClipperDisplayEnd(IggListClipper handle) { ImGuiListClipper *clipper = reinterpret_cast(handle); return clipper->DisplayEnd; } void iggListClipperDelete(IggListClipper handle) { ImGuiListClipper *clipper = reinterpret_cast(handle); delete clipper; } IggBool iggListClipperStep(IggListClipper handle) { ImGuiListClipper *clipper = reinterpret_cast(handle); return clipper->Step(); } void iggListClipperBegin(IggListClipper handle, int items_count, float items_height) { ImGuiListClipper *clipper = reinterpret_cast(handle); clipper->Begin(items_count, items_height); } void iggListClipperEnd(IggListClipper handle) { ImGuiListClipper *clipper = reinterpret_cast(handle); clipper->End(); }