Run cargo fmt
This commit is contained in:
parent
226eac35c3
commit
2dda9132cd
2 changed files with 6 additions and 3 deletions
|
|
@ -5,17 +5,20 @@ use crate::core::mouse::{Cursor, Interaction};
|
|||
use crate::core::renderer::Style;
|
||||
use crate::core::widget::tree::{State, Tag};
|
||||
use crate::core::widget::{tree, Tree};
|
||||
use crate::core::{self, layout, mouse, widget, Clipboard, Element, Layout, Length, Rectangle, Shell, Size, Widget, window};
|
||||
use crate::core::{
|
||||
self, layout, mouse, widget, window, Clipboard, Element, Layout, Length,
|
||||
Rectangle, Shell, Size, Widget,
|
||||
};
|
||||
use std::marker::PhantomData;
|
||||
|
||||
mod event;
|
||||
mod program;
|
||||
|
||||
pub use event::Event;
|
||||
pub use iced_graphics::Transformation;
|
||||
pub use iced_wgpu::custom::Primitive;
|
||||
pub use iced_wgpu::custom::Storage;
|
||||
pub use program::Program;
|
||||
pub use iced_graphics::Transformation;
|
||||
|
||||
/// A widget which can render custom shaders with Iced's `wgpu` backend.
|
||||
///
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
//! Handle events of a custom shader widget.
|
||||
use std::time::Instant;
|
||||
use crate::core::keyboard;
|
||||
use crate::core::mouse;
|
||||
use crate::core::touch;
|
||||
use std::time::Instant;
|
||||
|
||||
pub use crate::core::event::Status;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue