Skip to content

Commit

Permalink
egl: set context version when egl < 1.5
Browse files Browse the repository at this point in the history
Signed-off-by: p0ryae <[email protected]>
Fixes #1647.
  • Loading branch information
kchibisov committed Dec 21, 2023
1 parent 056a45b commit ff2aac0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

- Fixed EGL not setting context version with EGL versions before 1.5 and missing context ext.

# Version 0.31.1

- Fixed `CGLContextObj` having an invalid encoding on newer macOS versions.
Expand Down
6 changes: 6 additions & 0 deletions glutin/src/api/egl/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@ impl Display {
attrs.push(egl::CONTEXT_FLAGS_KHR as EGLint);
attrs.push(flags as EGLint);
}
} else if self.inner.version >= Version::new(1, 3) {
// EGL 1.3 uses that to indicate client version instead of major/minor.
if let Some(version) = version {
attrs.push(egl::CONTEXT_CLIENT_VERSION as EGLint);
attrs.push(version.major as EGLint);
}
}

attrs.push(egl::NONE as EGLint);
Expand Down

0 comments on commit ff2aac0

Please sign in to comment.