| 3245 | } |
| 3246 | |
| 3247 | ImVec4 SampleColormap(float t, ImPlot3DColormap cmap) { return ImGui::ColorConvertU32ToFloat4(SampleColormapU32(t, cmap)); } |
| 3248 | |
| 3249 | void RenderColorBar(const ImU32* colors, int size, ImDrawList& DrawList, const ImRect& bounds, bool vert, bool reversed, bool continuous) { |
| 3250 | const int n = continuous ? size - 1 : size; |
no test coverage detected