///////////////////////////////////////////////////////////////////////////
| 78 | |
| 79 | //////////////////////////////////////////////////////////////////////////////// |
| 80 | static void applyColor(const Color& base, Color& c, bool merge) { |
| 81 | if (merge) |
| 82 | c.blend(base); |
| 83 | else |
| 84 | c = base; |
| 85 | } |
| 86 | |
| 87 | //////////////////////////////////////////////////////////////////////////////// |
| 88 | static void colorizeBlocked(Task& task, const Color& base, Color& c, bool merge) { |
no outgoing calls
no test coverage detected