| 403 | } |
| 404 | |
| 405 | void PaintSession::setSegmentsSupportHeight(const SegmentFlags segments, const uint16_t height, const uint8_t slope) |
| 406 | { |
| 407 | for (int32_t s = 0; s < 9; s++) |
| 408 | { |
| 409 | if ((segments & kSegmentOffsets[s]) != SegmentFlags::none) |
| 410 | { |
| 411 | setSegmentSupportHeight(s, height, slope); |
| 412 | } |
| 413 | } |
| 414 | } |
| 415 | |
| 416 | void PaintSession::setSegmentSupportHeight(const uint8_t segment, const uint16_t height, const uint8_t slope) |
| 417 | { |
no outgoing calls
no test coverage detected