Results 2 comments of Nathan Soares

Transparent draw works fine here ![image](https://user-images.githubusercontent.com/7758072/172610127-8d9f3cf2-f348-4d0c-a354-a62069e7b5f5.png) winit window builder: ```rust WindowBuilder::new() .with_decorations(false) .with_transparent(true) ... ``` pixels clear color: ```rust pixels.set_clear_color(pixels::wgpu::Color::TRANSPARENT); ```