From fbc9deb424b0bfbc1ae7c7ee89ba08fecd049b2a Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 9 Jan 2020 04:22:27 +0100 Subject: Implement an opaque `Size` type It immutably ties physical and logical sizes to a specific scale factor. --- winit/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'winit/src/lib.rs') diff --git a/winit/src/lib.rs b/winit/src/lib.rs index b0f235ad..225907a4 100644 --- a/winit/src/lib.rs +++ b/winit/src/lib.rs @@ -32,6 +32,7 @@ mod application; mod clipboard; mod mode; mod proxy; +mod size; // We disable debug capabilities on release builds unless the `debug` feature // is explicitly enabled. @@ -49,3 +50,4 @@ pub use settings::Settings; use debug::Debug; use proxy::Proxy; +use size::Size; -- cgit