| 337 | } |
| 338 | |
| 339 | String printImageOperations(List<ImageOperation> const& list) { |
| 340 | return StringList(list.transformed(imageOperationToString)).join("?"); |
| 341 | } |
| 342 | |
| 343 | void addImageOperationReferences(ImageOperation const& operation, StringList& out) { |
| 344 | if (auto op = operation.ptr<AlphaMaskImageOperation>()) |
nothing calls this directly
no test coverage detected