| 413 | |
| 414 | inline const ImU32* GetKeys(ImPlotColormap cmap) const { return &Keys[KeyOffsets[cmap]]; } |
| 415 | inline int GetKeyCount(ImPlotColormap cmap) const { return KeyCounts[cmap]; } |
| 416 | inline ImU32 GetKeyColor(ImPlotColormap cmap, int idx) const { return Keys[KeyOffsets[cmap]+idx]; } |
| 417 | inline void SetKeyColor(ImPlotColormap cmap, int idx, ImU32 value) { Keys[KeyOffsets[cmap]+idx] = value; RebuildTables(); } |
| 418 |
no outgoing calls
no test coverage detected