Skip to content

Commit

Permalink
deps: wgpu -> 0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
wez committed Oct 30, 2023
1 parent bc99181 commit 3e01871
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 29 deletions.
86 changes: 59 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ As features stabilize some brief notes about them will accumulate here.
* Bundled harfbuzz to 8.2.1
* Bundled freetype to 2.13.1
* Bundled Noto Color Emoji font to 2.038
* wgpu to 0.18, which [improves OpenGL compatibility with older GPUs when using
WebGpu with its GL backend on Windows](https://github.com/gfx-rs/wgpu/releases/tag/v0.18.0)

### 20230712-072601-f4abf8fd

Expand Down
2 changes: 1 addition & 1 deletion wezterm-gui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ wezterm-open-url = { path = "../wezterm-open-url" }
wezterm-ssh = { path = "../wezterm-ssh" }
wezterm-term = { path = "../term", features=["use_serde"] }
wezterm-toast-notification = { path = "../wezterm-toast-notification" }
wgpu = "0.17"
wgpu = "0.18"
window = { path = "../window" }
window-funcs = { path = "../lua-api-crates/window-funcs" }

Expand Down
4 changes: 3 additions & 1 deletion wezterm-gui/src/termwindow/render/draw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,12 @@ impl crate::TermWindow {
a: 0.,
})
},
store: true,
store: wgpu::StoreOp::Store,
},
})],
depth_stencil_attachment: None,
occlusion_query_set: None,
timestamp_writes: None,
});
cleared = true;

Expand Down

0 comments on commit 3e01871

Please sign in to comment.