I'm on latest crate release of nannou
Using windows11 issues happen with all backends that work on win11
I'm having issues to get window transparency to work despite setting flags like this:
let window_id = app
.new_window()
.transparent(true)
.always_on_top(true)
// .fullscreen()
.clear_color(rgba(0.1, 0.1, 0.2, 0.4))
.size(WIDTH as u32, HEIGHT as u32)
.view(view)
.decorations(false)
.raw_event(raw_window_event)
.build()
.unwrap();
am i doing something wrong ? i also tested it with other backends like DX12
I'm on latest crate release of nannou Using windows11 issues happen with all backends that work on win11 I'm having issues to get window transparency to work despite setting flags like this:
am i doing something wrong ? i also tested it with other backends like DX12