Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Window Transparency Issue win11 #963

Open
danielnehrig opened this issue Feb 28, 2024 · 1 comment
Open

Window Transparency Issue win11 #963

danielnehrig opened this issue Feb 28, 2024 · 1 comment

Comments

@danielnehrig
Copy link

danielnehrig commented Feb 28, 2024

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

@danielnehrig
Copy link
Author

also looked at this post #385 (comment)
which did not do the trick

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant