You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// - Perform the add and multiply with double to allow seeking through larger ranges.
2990
+
// - StartPosY starts from ItemsFrozen, by adding SeekOffsetY we generally cancel that out (SeekOffsetY == LossynessOffset - ItemsFrozen * ItemsHeight).
2991
+
// - The reason we store SeekOffsetY instead of inferring it, is because we want to allow user to perform Seek after the last step, where ImGuiListClipperData is already done.
Copy file name to clipboardexpand all lines: imgui.h
+8-2
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@
28
28
// Library Version
29
29
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
30
30
#defineIMGUI_VERSION"1.91.0 WIP"
31
-
#defineIMGUI_VERSION_NUM19094
31
+
#defineIMGUI_VERSION_NUM19095
32
32
#defineIMGUI_HAS_TABLE
33
33
34
34
/*
@@ -2601,9 +2601,10 @@ struct ImGuiListClipper
2601
2601
int ItemsCount; // [Internal] Number of items
2602
2602
float ItemsHeight; // [Internal] Height of item after a first step and item submission can calculate it
2603
2603
float StartPosY; // [Internal] Cursor position at the time of Begin() or after table frozen rows are all processed
2604
+
double StartSeekOffsetY; // [Internal] Account for frozen rows in a table and initial loss of precision in very large windows.
2604
2605
void* TempData; // [Internal] Internal data
2605
2606
2606
-
// items_count: Use INT_MAX if you don't know how many items you have (in which case the cursor won't be advanced in the final step)
2607
+
// items_count: Use INT_MAX if you don't know how many items you have (in which case the cursor won't be advanced in the final step, and you can call SeekCursorForItem() manually if you need)
2607
2608
// items_height: Use -1.0f to be calculated automatically on first step. Otherwise pass in the distance between your items, typically GetTextLineHeightWithSpacing() or GetFrameHeightWithSpacing().
0 commit comments