Skip to content

Commit 91b5b7d

Browse files
committedAug 6, 2023
Glutin version 0.30.10
1 parent b045084 commit 91b5b7d

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed
 

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Unreleased
22

3+
# Version 0.30.10
4+
35
- Add `X11VisualInfo::visual_id` to get `XID` of the visual.
46
- Added support for EGL on Windows using Angle. This assumes libEGL.dll/libGLESv2.dll present.
57
- EGL's `Display::create_pbuffer_surface()` no longer sets the invalid `RENDER_BUFFER` attribute.

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A low-level library for OpenGL context creation.
77

88
```toml
99
[dependencies]
10-
glutin = "0.30.9"
10+
glutin = "0.30.10"
1111
```
1212

1313
## [Documentation](https://docs.rs/glutin)

‎glutin/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glutin"
3-
version = "0.30.9"
3+
version = "0.30.10"
44
authors = ["Kirill Chibisov <contact@kchibisov.com>"]
55
description = "Cross-platform OpenGL context provider."
66
keywords = ["windowing", "opengl", "egl"]
@@ -26,7 +26,7 @@ once_cell = "1.13"
2626
raw-window-handle = "0.5.0"
2727

2828
[target.'cfg(windows)'.dependencies]
29-
glutin_egl_sys = { version = "0.5.0", path = "../glutin_egl_sys", optional = true }
29+
glutin_egl_sys = { version = "0.5.1", path = "../glutin_egl_sys", optional = true }
3030
glutin_wgl_sys = { version = "0.4.0", path = "../glutin_wgl_sys", optional = true }
3131

3232
[target.'cfg(windows)'.dependencies.windows-sys]
@@ -41,10 +41,10 @@ features = [
4141
optional = true
4242

4343
[target.'cfg(target_os = "android")'.dependencies]
44-
glutin_egl_sys = { version = "0.5.0", path = "../glutin_egl_sys" }
44+
glutin_egl_sys = { version = "0.5.1", path = "../glutin_egl_sys" }
4545

4646
[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os = "dragonfly", target_os = "netbsd", target_os = "openbsd"))'.dependencies]
47-
glutin_egl_sys = { version = "0.5.0", path = "../glutin_egl_sys", optional = true }
47+
glutin_egl_sys = { version = "0.5.1", path = "../glutin_egl_sys", optional = true }
4848
glutin_glx_sys = { version = "0.4.0", path = "../glutin_glx_sys", optional = true }
4949
wayland-sys = { version = "0.30.0", default-features = false, features = ["egl", "client", "dlopen"], optional = true }
5050
x11-dl = { version = "2.20.0", optional = true }

‎glutin_egl_sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glutin_egl_sys"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["Kirill Chibisov <contact@kchibisov.com>"]
55
description = "The egl bindings for glutin"
66
repository = "https://github.com/rust-windowing/glutin"

0 commit comments

Comments
 (0)
Please sign in to comment.