| 1122 | } |
| 1123 | |
| 1124 | void Image::updateVectorGraphics(bool append, span<const VgCommand> commands) { |
| 1125 | if (!append) { |
| 1126 | mVgCommands.clear(); |
| 1127 | } |
| 1128 | |
| 1129 | copy(begin(commands), end(commands), back_inserter(mVgCommands)); |
| 1130 | } |
| 1131 | |
| 1132 | Task<vector<Channel>> Image::getHdrImageData(shared_ptr<Image> reference, string_view requestedChannelGroup, EMetric metric, int priority) const { |
| 1133 | const auto size = this->size(); |
no test coverage detected