| 9 | namespace snap::drawing { |
| 10 | |
| 11 | static LayerContent makeRectangle(Size size) { |
| 12 | DrawingContext ctx(size.width, size.height); |
| 13 | |
| 14 | Paint paint; |
| 15 | paint.setColor(Color::blue()); |
| 16 | |
| 17 | ctx.drawPaint(paint, ctx.drawBounds()); |
| 18 | |
| 19 | return ctx.finish(); |
| 20 | } |
| 21 | |
| 22 | TEST(DisplayList, canRecordAndVisitCommands) { |
| 23 | auto displayList = makeShared<DisplayList>(Size(100, 100), TimePoint(0)); |