Skip to content

Commit 9be207f

Browse files
Desktop: Update CEF to 141 (#3352)
update cef to 141
1 parent f02f834 commit 9be207f

File tree

13 files changed

+113
-1018
lines changed

13 files changed

+113
-1018
lines changed

.nix/flake.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.lock

Lines changed: 98 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ quote = "1.0"
106106
chrono = "0.4"
107107
ron = "0.11"
108108
fastnoise-lite = "1.1"
109-
wgpu = { version = "26.0", features = [
109+
wgpu = { version = "27.0", features = [
110110
# We don't have wgpu on multiple threads (yet) https://github.com/gfx-rs/wgpu/blob/trunk/CHANGELOG.md#wgpu-types-now-send-sync-on-wasm
111111
"fragile-send-sync-non-atomic-wasm",
112112
"spirv",
@@ -138,8 +138,8 @@ winit = { git = "https://github.com/rust-windowing/winit.git" }
138138
keyboard-types = "0.8"
139139
url = "2.5"
140140
tokio = { version = "1.29", features = ["fs", "macros", "io-std", "rt"] }
141-
vello = { version = "0.6" }
142-
vello_encoding = { version = "0.6" }
141+
vello = { git = "https://github.com/linebender/vello" }
142+
vello_encoding = { git = "https://github.com/linebender/vello" }
143143
resvg = "0.45"
144144
usvg = "0.45"
145145
rand = { version = "0.9", default-features = false, features = ["std_rng"] }
@@ -188,8 +188,8 @@ iai-callgrind = { version = "0.16" }
188188
ndarray = "0.16"
189189
strum = { version = "0.27", features = ["derive"] }
190190
dirs = "6.0"
191-
cef = "140"
192-
cef-dll-sys = "140"
191+
cef = { version = "141", features = ["accelerated_osr"] }
192+
cef-dll-sys = "141"
193193
include_dir = "0.7"
194194
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
195195
tracing = "0.1"

desktop/src/cef.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ mod platform;
3232
mod utility;
3333

3434
#[cfg(feature = "accelerated_paint")]
35-
mod texture_import;
36-
#[cfg(feature = "accelerated_paint")]
37-
use texture_import::SharedTextureHandle;
35+
use cef::osr_texture_import::SharedTextureHandle;
3836

3937
pub(crate) use context::{CefContext, CefContextBuilder, InitError};
4038

0 commit comments

Comments
 (0)