| 8 | : displayList(Valdi::makeShared<DisplayList>(Size(width, height), TimePoint(0.0))) {} |
| 9 | |
| 10 | void DisplayListBuilder::context(Vector translation, Scalar opacity, BuilderCb&& cb) { |
| 11 | context(translation, opacity, 0, true, std::move(cb)); |
| 12 | } |
| 13 | |
| 14 | void DisplayListBuilder::context(const Matrix& matrix, Scalar opacity, BuilderCb&& cb) { |
| 15 | context(matrix, opacity, 0, true, std::move(cb)); |
nothing calls this directly
no test coverage detected