* * rct2: 0x00688485 */
| 737 | * rct2: 0x00688485 |
| 738 | */ |
| 739 | void PaintDrawStructs(PaintSession& session) |
| 740 | { |
| 741 | PROFILED_FUNCTION(); |
| 742 | |
| 743 | for (PaintStruct* ps = session.PaintHead; ps != nullptr; ps = ps->NextQuadrantEntry) |
| 744 | { |
| 745 | PaintDrawStruct(session, ps); |
| 746 | } |
| 747 | } |
| 748 | |
| 749 | static void PaintPSImageWithBoundingBoxes(PaintSession& session, PaintStruct* ps, ImageId imageId, int32_t x, int32_t y) |
| 750 | { |
no test coverage detected