Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

egl: set context version when egl < 1.5 #1655

Merged
merged 1 commit into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
7 changes: 7 additions & 0 deletions glutin/src/api/egl/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,13 @@ 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. The
// constant is the same as `CONTEXT_MAJOR_VERSION`.
if let Some(version) = version {
attrs.push(egl::CONTEXT_CLIENT_VERSION as EGLint);
kchibisov marked this conversation as resolved.
Show resolved Hide resolved
attrs.push(version.major as EGLint);
}
}

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