Returns true if a color is set to be automatically determined
| 1465 | |
| 1466 | // Returns true if a color is set to be automatically determined |
| 1467 | static inline bool IsColorAuto(const ImVec4& col) { return col.w == -1; } |
| 1468 | // Returns true if a style color is set to be automatically determined |
| 1469 | static inline bool IsColorAuto(ImPlotCol idx) { return IsColorAuto(GImPlot->Style.Colors[idx]); } |
| 1470 | // Returns the automatically deduced style color |
no outgoing calls
no test coverage detected