Skip to content

Commit

Permalink
Glutin version 0.30.10
Browse files Browse the repository at this point in the history
  • Loading branch information
kchibisov committed Aug 6, 2023
1 parent b045084 commit 91b5b7d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

# Version 0.30.10

- Add `X11VisualInfo::visual_id` to get `XID` of the visual.
- Added support for EGL on Windows using Angle. This assumes libEGL.dll/libGLESv2.dll present.
- EGL's `Display::create_pbuffer_surface()` no longer sets the invalid `RENDER_BUFFER` attribute.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A low-level library for OpenGL context creation.

```toml
[dependencies]
glutin = "0.30.9"
glutin = "0.30.10"
```

## [Documentation](https://docs.rs/glutin)
Expand Down
8 changes: 4 additions & 4 deletions glutin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glutin"
version = "0.30.9"
version = "0.30.10"
authors = ["Kirill Chibisov <contact@kchibisov.com>"]
description = "Cross-platform OpenGL context provider."
keywords = ["windowing", "opengl", "egl"]
Expand All @@ -26,7 +26,7 @@ once_cell = "1.13"
raw-window-handle = "0.5.0"

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

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

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

[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os = "dragonfly", target_os = "netbsd", target_os = "openbsd"))'.dependencies]
glutin_egl_sys = { version = "0.5.0", path = "../glutin_egl_sys", optional = true }
glutin_egl_sys = { version = "0.5.1", path = "../glutin_egl_sys", optional = true }
glutin_glx_sys = { version = "0.4.0", path = "../glutin_glx_sys", optional = true }
wayland-sys = { version = "0.30.0", default-features = false, features = ["egl", "client", "dlopen"], optional = true }
x11-dl = { version = "2.20.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion glutin_egl_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glutin_egl_sys"
version = "0.5.0"
version = "0.5.1"
authors = ["Kirill Chibisov <contact@kchibisov.com>"]
description = "The egl bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
Expand Down

0 comments on commit 91b5b7d

Please sign in to comment.