This is more or less the same as #274, which I believe was falsely closed. When that issue was filed, CompositeAlphaMode was not yet exposed in wgpu, which meant that pixels could not configure it to make transparent windows work. #274 was then closed when the upstream wgpu issue was resolved. However, pixels was never actually updated to use the now-exposed CompositeAlphaMode API, and it is still hardcoded to use the first one (which appears to be Opaque all the time):
https://github.com/parasyte/pixels/blob/d140eba7c9849372a6673b0d37bfe83948c4e530/src/builder.rs#L322
Therefore, the issue with transparency still persists.
This is more or less the same as #274, which I believe was falsely closed. When that issue was filed,
CompositeAlphaMode
was not yet exposed in wgpu, which meant that pixels could not configure it to make transparent windows work. #274 was then closed when the upstream wgpu issue was resolved. However, pixels was never actually updated to use the now-exposedCompositeAlphaMode
API, and it is still hardcoded to use the first one (which appears to beOpaque
all the time): https://github.com/parasyte/pixels/blob/d140eba7c9849372a6673b0d37bfe83948c4e530/src/builder.rs#L322Therefore, the issue with transparency still persists.