| 3138 | ImVec4 GetStyleColorVec4(ImPlot3DCol idx) { return IsColorAuto(idx) ? GetAutoColor(idx) : GImPlot3D->Style.Colors[idx]; } |
| 3139 | |
| 3140 | ImU32 GetStyleColorU32(ImPlot3DCol idx) { return ImGui::ColorConvertFloat4ToU32(ImPlot3D::GetStyleColorVec4(idx)); } |
| 3141 | |
| 3142 | ImPlot3DMarker NextMarker() { |
| 3143 | ImPlot3DContext& gp = *GImPlot3D; |
no test coverage detected