Skip to content

Commit 37be696

Browse files
committed
Bump glow and femtovg versions
1 parent 53f2d57 commit 37be696

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

examples/opengl_texture/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ name = "opengl_texture"
1616

1717
[dependencies]
1818
slint = { path = "../../api/rs/slint" }
19-
glow = { version = "0.15" }
19+
glow = { version = "0.16" }
2020
web-time = { version = "1.0" }
2121

2222
[build-dependencies]

examples/opengl_texture/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ impl DemoTexture {
103103
0,
104104
glow::RGBA as _,
105105
glow::UNSIGNED_BYTE as _,
106-
None,
106+
glow::PixelUnpackData::Slice(None),
107107
);
108108

109109
let _saved_fbo_binding = ScopedFrameBufferBinding::new(gl, Some(fbo));

examples/opengl_underlay/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ name = "opengl_underlay"
1616

1717
[dependencies]
1818
slint = { path = "../../api/rs/slint" }
19-
glow = { version = "0.15" }
19+
glow = { version = "0.16" }
2020
web-time = { version = "1.0" }
2121

2222
[build-dependencies]

internal/renderers/femtovg/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ derive_more = { workspace = true }
3030
lyon_path = "1.0"
3131
pin-weak = "1"
3232
scoped-tls-hkt = "0.1"
33-
femtovg = { version = "0.11.0" }
33+
femtovg = { version = "0.12.0" }
3434
ttf-parser = { workspace = true }
3535
unicode-script = { version = "0.5.4" } # Use the same version was femtovg's rustybuzz, to avoid duplicate crates
3636
imgref = { version = "1.6.1" }
3737
rgb = { version = "0.8.27" }
3838

39-
glow = { version = "0.15" }
39+
glow = { version = "0.16" }
4040
unicode-segmentation = { workspace = true }
4141

4242
[target.'cfg(target_family = "windows")'.dependencies]

internal/renderers/skia/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ scoped-tls-hkt = "0.1"
4242
raw-window-handle = { version = "0.6", features = ["std"] }
4343

4444
skia-safe = { version = "0.78.0", features = ["textlayout", "gl"] }
45-
glow = { version = "0.13" }
45+
glow = { version = "0.16" }
4646
unicode-segmentation = { workspace = true }
4747

4848
ash = { version = "^0.37.2", optional = true }

0 commit comments

Comments
 (0)