| 174 | } |
| 175 | |
| 176 | bool HasBaseDilation(const Window& window) { |
| 177 | for (const auto& dim : window.dimensions()) { |
| 178 | if (dim.base_dilation() != 1) { |
| 179 | return true; |
| 180 | } |
| 181 | } |
| 182 | return false; |
| 183 | } |
| 184 | |
| 185 | bool HasWindowDilation(const Window& window) { |
| 186 | for (const auto& dim : window.dimensions()) { |
no test coverage detected