| 153 | } |
| 154 | |
| 155 | CachedWorkspace::CachedImage::CachedImage(CachedImage&& other) noexcept { |
| 156 | num_bytes = other.num_bytes; |
| 157 | bitmap = std::move(other.bitmap); |
| 158 | depth_map = std::move(other.depth_map); |
| 159 | normal_map = std::move(other.normal_map); |
| 160 | } |
| 161 | |
| 162 | CachedWorkspace::CachedImage& CachedWorkspace::CachedImage::operator=( |
| 163 | CachedImage&& other) noexcept { |
nothing calls this directly
no outgoing calls
no test coverage detected