| 1022 | //----------------------------------------------------------------------------- |
| 1023 | |
| 1024 | struct GetterConstColor { |
| 1025 | GetterConstColor(ImU32 col) : Col(col) {} |
| 1026 | IMPLOT3D_INLINE ImU32 operator()(int) const { return Col; } |
| 1027 | ImU32 Col; |
| 1028 | }; |
| 1029 | |
| 1030 | struct GetterIdxColor { |
| 1031 | GetterIdxColor(const ImU32* data, int count, float alpha = 1.0f) : Data(data), Count(count), Alpha(alpha) {} |
no outgoing calls
no test coverage detected