windows feature WS_EX_NOREDIRECTIONBITMAP (#575)

* set WS_EX_NOREDIRECTIONBITMAP

* add CHANGELOG.md

* more flexibility.

* Skip DwmEnableBlurBehindWindow if no_redirection_bitmap is enabled.
This commit is contained in:
えちょ 2018-06-22 10:33:29 +09:00 committed by Francesca Frangipane
parent 8f394f117b
commit 047c67baf3
4 changed files with 15 additions and 1 deletions

View file

@ -11,6 +11,7 @@ pub use self::window::Window;
pub struct PlatformSpecificWindowBuilderAttributes {
pub parent: Option<HWND>,
pub taskbar_icon: Option<::Icon>,
pub no_redirection_bitmap: bool,
}
unsafe impl Send for PlatformSpecificWindowBuilderAttributes {}