| 361 | } |
| 362 | |
| 363 | ImVec4 GetLastItemColor() { |
| 364 | ImPlotContext& gp = *GImPlot; |
| 365 | if (gp.PreviousItem) |
| 366 | return ImGui::ColorConvertU32ToFloat4(gp.PreviousItem->Color); |
| 367 | return ImVec4(); |
| 368 | } |
| 369 | |
| 370 | void BustItemCache() { |
| 371 | ImPlotContext& gp = *GImPlot; |
no test coverage detected