diff options
author | 2023-06-22 01:04:07 +0200 | |
---|---|---|
committer | 2023-06-29 07:18:24 +0200 | |
commit | 2128472c2a8afcb59927712497c4f613612e9dcc (patch) | |
tree | 6a5446ce13d3e98f8f87b0527a5c53016dc4470e /core/src/renderer.rs | |
parent | 0ae1baa37bd7b6607f79b33b8a6d8c5daafde0b2 (diff) | |
download | iced-2128472c2a8afcb59927712497c4f613612e9dcc.tar.gz iced-2128472c2a8afcb59927712497c4f613612e9dcc.tar.bz2 iced-2128472c2a8afcb59927712497c4f613612e9dcc.zip |
Remove `layout` method from `core::Renderer` trait
Diffstat (limited to 'core/src/renderer.rs')
-rw-r--r-- | core/src/renderer.rs | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/core/src/renderer.rs b/core/src/renderer.rs index 7c73d2e4..1b327e56 100644 --- a/core/src/renderer.rs +++ b/core/src/renderer.rs @@ -5,26 +5,13 @@ mod null; #[cfg(debug_assertions)] pub use null::Null; -use crate::layout; -use crate::{Background, BorderRadius, Color, Element, Rectangle, Vector}; +use crate::{Background, BorderRadius, Color, Rectangle, Vector}; /// A component that can be used by widgets to draw themselves on a screen. pub trait Renderer: Sized { /// The supported theme of the [`Renderer`]. type Theme; - /// Lays out the elements of a user interface. - /// - /// You should override this if you need to perform any operations before or - /// after layouting. For instance, trimming the measurements cache. - fn layout<Message>( - &mut self, - element: &Element<'_, Message, Self>, - limits: &layout::Limits, - ) -> layout::Node { - element.as_widget().layout(self, limits) - } - /// Draws the primitives recorded in the given closure in a new layer. /// /// The layer will clip its contents to the provided `bounds`. |