Nathan Soares
Results
2
comments of
Nathan Soares
Transparent draw works fine here  winit window builder: ```rust WindowBuilder::new() .with_decorations(false) .with_transparent(true) ... ``` pixels clear color: ```rust pixels.set_clear_color(pixels::wgpu::Color::TRANSPARENT); ```
bump