| 3329 | } |
| 3330 | |
| 3331 | void SubplotNextCell() { |
| 3332 | ImPlotContext& gp = *GImPlot; |
| 3333 | ImPlotSubplot& subplot = *gp.CurrentSubplot; |
| 3334 | SubplotSetCell(++subplot.CurrentIdx); |
| 3335 | } |
| 3336 | |
| 3337 | bool BeginSubplots(const char* title, int rows, int cols, const ImVec2& size, ImPlotSubplotFlags flags, float* row_sizes, float* col_sizes) { |
| 3338 | IM_ASSERT_USER_ERROR(rows > 0 && cols > 0, "Invalid sizing arguments!"); |
no test coverage detected