We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 851f6f0 commit dbc9a88Copy full SHA for dbc9a88
bracket-terminal/Cargo.toml
@@ -31,7 +31,7 @@ ultraviolet = "~0.9"
31
parking_lot = { version = "~0.12" }
32
ctrlc = { version = "~3.2", optional=true }
33
anyhow = "~1.0"
34
-wgpu = { version = "0.13", optional=true }
+wgpu = { version = "0.14.0", optional=true }
35
pollster = { version = "0.2", optional=true }
36
bytemuck = {version = "1.4.0", optional=true }
37
bracket-terminal/src/hal/webgpu/init.rs
@@ -152,6 +152,7 @@ async fn init_adapter(
152
width: size.width,
153
height: size.height,
154
present_mode: wgpu::PresentMode::Fifo,
155
+ alpha_mode: wgpu::CompositeAlphaMode::Auto,
156
};
157
surface.configure(&device, &config);
158
0 commit comments