(&mut self)
| 2261 | } |
| 2262 | |
| 2263 | pub fn end_layout(&mut self) -> &[InternalRenderCommand<CustomElementData>] { |
| 2264 | self.close_element(); |
| 2265 | |
| 2266 | if self.open_layout_element_stack.len() > 1 { |
| 2267 | // Unbalanced open/close warning |
| 2268 | } |
| 2269 | |
| 2270 | if self.debug_mode_enabled { |
| 2271 | self.render_debug_view(); |
| 2272 | } |
| 2273 | |
| 2274 | self.calculate_final_layout(); |
| 2275 | &self.render_commands |
| 2276 | } |
| 2277 | |
| 2278 | /// Evicts stale entries from the text measurement cache. |
| 2279 | /// Entries that haven't been used for more than 2 generations are removed. |
no test coverage detected