diff options
author | Aceeri <conmcclusk@gmail.com> | 2015-11-09 03:18:48 -0800 |
---|---|---|
committer | Aceeri <conmcclusk@gmail.com> | 2015-11-09 03:18:48 -0800 |
commit | 9a05577df8f3e616de94635ef41e0d8601f3091c (patch) | |
tree | 4b27dae8e6e6ebbfaefa1c18a8b4fdf8dd7a9c46 /src/api/wayland | |
parent | c6ffedccbdf61cf86591989e61cae73d95251df5 (diff) | |
download | glutin-9a05577df8f3e616de94635ef41e0d8601f3091c.tar.gz glutin-9a05577df8f3e616de94635ef41e0d8601f3091c.zip |
Not implemented asserts to prevent silent fails
Diffstat (limited to 'src/api/wayland')
-rw-r--r-- | src/api/wayland/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/api/wayland/mod.rs b/src/api/wayland/mod.rs index 2877713..8084516 100644 --- a/src/api/wayland/mod.rs +++ b/src/api/wayland/mod.rs @@ -257,6 +257,10 @@ impl Window { { use self::wayland::internals::FFI; + // not implemented + assert!(win_attribs.min_dimensions.is_none()); + assert!(win_attribs.max_dimensions.is_none()); + let wayland_context = match *WAYLAND_CONTEXT { Some(ref c) => c, None => return Err(CreationError::NotSupported), |