glutin/api/egl/display.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
//! Everything related to `EGLDisplay`.
use std::collections::HashSet;
use std::ffi::{self, CStr};
use std::fmt;
use std::mem::MaybeUninit;
use std::ops::Deref;
use std::os::raw::c_char;
use std::sync::Arc;
use glutin_egl_sys::egl;
use glutin_egl_sys::egl::types::{EGLAttrib, EGLDisplay, EGLint};
use once_cell::sync::OnceCell;
use raw_window_handle::{RawDisplayHandle, XlibDisplayHandle};
use crate::config::ConfigTemplate;
use crate::context::Version;
use crate::display::{AsRawDisplay, DisplayFeatures, GetDisplayExtensions, RawDisplay};
use crate::error::{ErrorKind, Result};
use crate::prelude::*;
use crate::private::Sealed;
use crate::surface::{PbufferSurface, PixmapSurface, SurfaceAttributes, WindowSurface};
use super::config::Config;
use super::context::NotCurrentContext;
use super::device::Device;
use super::surface::Surface;
use super::{Egl, EGL};
/// Extensions that don't require any display.
pub(crate) static CLIENT_EXTENSIONS: OnceCell<HashSet<&'static str>> = OnceCell::new();
/// A wrapper for the `EGLDisplay` and its supported extensions.
#[derive(Debug, Clone)]
pub struct Display {
// Inner display to simplify passing it around.
pub(crate) inner: Arc<DisplayInner>,
}
impl Display {
/// Create EGL display with the native display.
///
/// # Safety
///
/// `raw_display` must point to a valid system display. Using zero or
/// [`std::ptr::null()`] for the display will result in using
/// `EGL_DEFAULT_DISPLAY`, which is not recommended or will
/// work on a platform with a concept of native display, like Wayland.
pub unsafe fn new(raw_display: RawDisplayHandle) -> Result<Self> {
let egl = match EGL.as_ref() {
Some(egl) => egl,
None => return Err(ErrorKind::NotFound.into()),
};
CLIENT_EXTENSIONS.get_or_init(|| get_extensions(egl, egl::NO_DISPLAY));
// Create a EGL display by chaining all display creation functions aborting on
// `EGL_BAD_ATTRIBUTE`.
let display = Self::get_platform_display(egl, raw_display)
.or_else(|err| {
if err.error_kind() == ErrorKind::BadAttribute {
Err(err)
} else {
Self::get_platform_display_ext(egl, raw_display)
}
})
.or_else(|err| {
if err.error_kind() == ErrorKind::BadAttribute {
Err(err)
} else {
Self::get_display(egl, raw_display)
}
})?;
Self::initialize_display(egl, display, Some(raw_display))
}
/// Create an EGL display using the specified device.
///
/// In most cases, prefer [`Display::new()`] unless you need to render
/// off screen or use other extensions like EGLStreams.
///
/// This function may take an optional [`RawDisplayHandle`] argument. At the
/// moment the `raw_display` argument is ignored and this function will
/// return [`Err`]. This may change in the future.
///
/// # Safety
///
/// If `raw_display` is [`Some`], `raw_display` must point to a valid
/// [`RawDisplayHandle::Drm`]. The provided
/// [`raw_display_handle::DrmDisplayHandle.fd`] may be closed after calling
/// this function.
pub unsafe fn with_device(
device: &Device,
raw_display: Option<RawDisplayHandle>,
) -> Result<Self> {
let egl = match EGL.as_ref() {
Some(egl) => egl,
None => return Err(ErrorKind::NotFound.into()),
};
if !egl.GetPlatformDisplayEXT.is_loaded() {
return Err(ErrorKind::NotSupported("eglGetPlatformDisplayEXT is not supported").into());
}
// Okay to unwrap here because the client extensions must have been enumerated
// while querying the available devices or the device was gotten from an
// existing display.
let extensions = CLIENT_EXTENSIONS.get().unwrap();
if !extensions.contains("EGL_EXT_platform_base")
&& !extensions.contains("EGL_EXT_platform_device")
{
return Err(ErrorKind::NotSupported(
"Creating a display from a device is not supported",
)
.into());
}
let mut attrs = Vec::<EGLint>::with_capacity(3);
match raw_display {
Some(RawDisplayHandle::Drm(handle))
if device.extensions().contains("EGL_EXT_device_drm") =>
{
attrs.push(egl::DRM_MASTER_FD_EXT as EGLint);
attrs.push(handle.fd as EGLint);
},
Some(_) => {
return Err(ErrorKind::NotSupported(
"`egl::display::Display::with_device()` does not support \
non-`DrmDisplayHandle` `RawDisplayHandle`s",
)
.into())
},
None => {},
};
// Push at the end so we can pop it on failure
let mut has_display_reference = extensions.contains("EGL_KHR_display_reference");
if has_display_reference {
attrs.push(egl::TRACK_REFERENCES_KHR as _);
attrs.push(egl::TRUE as _);
}
// Push `egl::NONE` to terminate the list.
attrs.push(egl::NONE as EGLint);
// NOTE: This fallback is needed because libglvnd advertises client extensions
// if at least one vendor library supports them. This leads to creation
// failures for the vendor libraries not supporting
// EGL_KHR_display_reference. Also according to the spec creation is allowed
// to fail with EGL_KHR_display_reference set to EGL_TRUE even if
// EGL_KHR_display_reference is advertised in the client extension
// string, so just always try creation without EGL_KHR_display_reference
// if it failed using it.
let platform_display = loop {
match Self::check_display_error(unsafe {
egl.GetPlatformDisplayEXT(
egl::PLATFORM_DEVICE_EXT,
device.raw_device() as *mut _,
attrs.as_ptr(),
)
}) {
Err(_) if has_display_reference => {
attrs.pop();
attrs.pop();
attrs.pop();
attrs.push(egl::NONE as EGLint);
has_display_reference = false;
},
platform_display => break platform_display,
}
}
.map(EglDisplay::Ext)?;
Self::initialize_display(egl, platform_display, None)
}
/// Get the [`Device`] the display is using.
///
/// This function returns [`Err`] if the `EGL_EXT_device_query` or
/// `EGL_EXT_device_base` extensions are not available.
pub fn device(&self) -> Result<Device> {
let no_display_extensions = CLIENT_EXTENSIONS.get().unwrap();
// Querying the device of a display only requires EGL_EXT_device_query, but we
// also check if EGL_EXT_device_base is available since
// EGL_EXT_device_base also provides EGL_EXT_device_query.
if !no_display_extensions.contains("EGL_EXT_device_query")
|| !no_display_extensions.contains("EGL_EXT_device_base")
{
return Err(ErrorKind::NotSupported(
"Querying the device from a display is not supported",
)
.into());
}
let mut device = MaybeUninit::uninit();
if unsafe {
self.inner.egl.QueryDisplayAttribEXT(
*self.inner.raw,
egl::DEVICE_EXT as EGLint,
device.as_mut_ptr(),
)
} == egl::FALSE
{
// Check for EGL_NOT_INITIALIZED in case the display was externally terminated.
//
// EGL_BAD_ATTRIBUTE shouldn't be returned since EGL_DEVICE_EXT should be a
// valid display attribute.
return Err(super::check_error().err().unwrap_or_else(|| {
ErrorKind::NotSupported("failed to query device from display").into()
}));
}
let device = unsafe { device.assume_init() } as egl::types::EGLDeviceEXT;
debug_assert_ne!(
device,
egl::NO_DEVICE_EXT,
"eglQueryDisplayAttribEXT(EGL_DEVICE_EXT) should never return EGL_NO_DEVICE_EXT on \
success"
);
Device::from_ptr(self.inner.egl, device)
}
/// Get a reference to the initialized EGL API.
pub fn egl(&self) -> &'static Egl {
self.inner.egl
}
/// Terminate the EGL display.
///
/// When the display is managed by glutin with the
/// `EGL_KHR_display_reference` this function does nothing and
/// `eglTerminate` will be automatically invoked during display destruction.
///
/// # Safety
///
/// This function will destroy the global EGL state, even the one created
/// and managed by other libraries. Use this function only when you're
/// bringing everything down.
pub unsafe fn terminate(self) {
if !self.inner.uses_display_reference() {
unsafe {
self.inner.egl.Terminate(*self.inner.raw);
}
}
}
fn get_platform_display(egl: &Egl, display: RawDisplayHandle) -> Result<EglDisplay> {
if !egl.GetPlatformDisplay.is_loaded() {
return Err(ErrorKind::NotSupported("eglGetPlatformDisplay is not supported").into());
}
let extensions = CLIENT_EXTENSIONS.get().unwrap();
let mut attrs = Vec::<EGLAttrib>::with_capacity(5);
let (platform, display) = match display {
RawDisplayHandle::Wayland(handle)
if extensions.contains("EGL_KHR_platform_wayland") =>
{
(egl::PLATFORM_WAYLAND_KHR, handle.display.as_ptr())
},
RawDisplayHandle::Xlib(handle) if extensions.contains("EGL_KHR_platform_x11") => {
attrs.push(egl::PLATFORM_X11_SCREEN_KHR as EGLAttrib);
attrs.push(handle.screen as EGLAttrib);
(
egl::PLATFORM_X11_KHR,
handle.display.map_or(egl::DEFAULT_DISPLAY as *mut _, |d| d.as_ptr()),
)
},
RawDisplayHandle::Gbm(handle) if extensions.contains("EGL_KHR_platform_gbm") => {
(egl::PLATFORM_GBM_KHR, handle.gbm_device.as_ptr())
},
RawDisplayHandle::Drm(_) => {
return Err(ErrorKind::NotSupported(
"`DrmDisplayHandle` must be used with `egl::display::Display::with_device()`",
)
.into())
},
RawDisplayHandle::Android(_) if extensions.contains("EGL_KHR_platform_android") => {
(egl::PLATFORM_ANDROID_KHR, egl::DEFAULT_DISPLAY as *mut _)
},
_ => {
return Err(
ErrorKind::NotSupported("provided display handle is not supported").into()
)
},
};
// Push at the end so we can pop it on failure
let mut has_display_reference = extensions.contains("EGL_KHR_display_reference");
if has_display_reference {
attrs.push(egl::TRACK_REFERENCES_KHR as _);
attrs.push(egl::TRUE as _);
}
// Push `egl::NONE` to terminate the list.
attrs.push(egl::NONE as EGLAttrib);
// NOTE: This fallback is needed because libglvnd advertises client extensions
// if at least one vendor library supports them. This leads to creation
// failures for the vendor libraries not supporting
// EGL_KHR_display_reference. Also according to the spec creation is allowed
// to fail with EGL_KHR_display_reference set to EGL_TRUE even if
// EGL_KHR_display_reference is advertised in the client extension
// string, so just always try creation without EGL_KHR_display_reference
// if it failed using it.
let platform_display = loop {
match Self::check_display_error(unsafe {
egl.GetPlatformDisplay(platform, display as *mut _, attrs.as_ptr())
}) {
Err(_) if has_display_reference => {
attrs.pop();
attrs.pop();
attrs.pop();
attrs.push(egl::NONE as EGLAttrib);
has_display_reference = false;
},
platform_display => break platform_display,
}
};
platform_display.map(EglDisplay::Khr)
}
fn get_platform_display_ext(egl: &Egl, display: RawDisplayHandle) -> Result<EglDisplay> {
if !egl.GetPlatformDisplayEXT.is_loaded() {
return Err(ErrorKind::NotSupported("eglGetPlatformDisplayEXT is not supported").into());
}
let extensions = CLIENT_EXTENSIONS.get().unwrap();
let mut attrs = Vec::<EGLint>::with_capacity(5);
let mut legacy = false;
let (platform, display) = match display {
RawDisplayHandle::Wayland(handle)
if extensions.contains("EGL_EXT_platform_wayland") =>
{
(egl::PLATFORM_WAYLAND_EXT, handle.display.as_ptr())
},
RawDisplayHandle::Xlib(handle) if extensions.contains("EGL_EXT_platform_x11") => {
attrs.push(egl::PLATFORM_X11_SCREEN_EXT as EGLint);
attrs.push(handle.screen as EGLint);
(
egl::PLATFORM_X11_EXT,
handle.display.map_or(egl::DEFAULT_DISPLAY as *mut _, |d| d.as_ptr()),
)
},
RawDisplayHandle::Xcb(handle)
if extensions.contains("EGL_MESA_platform_xcb")
|| extensions.contains("EGL_EXT_platform_xcb") =>
{
attrs.push(egl::PLATFORM_XCB_SCREEN_EXT as EGLint);
attrs.push(handle.screen as EGLint);
(
egl::PLATFORM_XCB_EXT,
handle.connection.map_or(egl::DEFAULT_DISPLAY as *mut _, |c| c.as_ptr()),
)
},
RawDisplayHandle::Gbm(handle)
// NOTE: Some drivers report that they support the KHR GBM extension without EGL
// 1.5 client, so work around that here by checking the KHR GBM extension as well.
// The MESA and KHR extensions have the same constant values, thus it'll work
// regardless.
//
// See https://github.com/rust-windowing/glutin/issues/1708.
if extensions.contains("EGL_MESA_platform_gbm")
|| extensions.contains("EGL_KHR_platform_gbm") =>
{
(egl::PLATFORM_GBM_MESA, handle.gbm_device.as_ptr())
},
RawDisplayHandle::Drm(_) => {
return Err(ErrorKind::NotSupported(
"`DrmDisplayHandle` must be used with `egl::display::Display::with_device()`",
)
.into())
},
RawDisplayHandle::Windows(..) if extensions.contains("EGL_ANGLE_platform_angle") => {
// Only CreateWindowSurface appears to work with Angle.
legacy = true;
(egl::PLATFORM_ANGLE_ANGLE, egl::DEFAULT_DISPLAY as *mut _)
},
_ => {
return Err(
ErrorKind::NotSupported("provided display handle is not supported").into()
)
},
};
// Push at the end so we can pop it on failure
let mut has_display_reference = extensions.contains("EGL_KHR_display_reference");
if has_display_reference {
attrs.push(egl::TRACK_REFERENCES_KHR as _);
attrs.push(egl::TRUE as _);
}
// Push `egl::NONE` to terminate the list.
attrs.push(egl::NONE as EGLint);
// NOTE: This fallback is needed because libglvnd advertises client extensions
// if at least one vendor library supports them. This leads to creation
// failures for the vendor libraries not supporting
// EGL_KHR_display_reference. Also according to the spec creation is allowed
// to fail with EGL_KHR_display_reference set to EGL_TRUE even if
// EGL_KHR_display_reference is advertised in the client extension
// string, so just always try creation without EGL_KHR_display_reference
// if it failed using it.
let platform_display = loop {
match Self::check_display_error(unsafe {
egl.GetPlatformDisplayEXT(platform, display as *mut _, attrs.as_ptr())
}) {
Err(_) if has_display_reference => {
attrs.pop();
attrs.pop();
attrs.pop();
attrs.push(egl::NONE as EGLint);
has_display_reference = false;
},
platform_display => break platform_display,
}
};
platform_display.map(|display| {
if legacy {
// NOTE: For angle we use the Legacy code path, as that uses CreateWindowSurface
// instead of CreatePlatformWindowSurface*. The latter somehow
// doesn't work, only the former does. But Angle's own example also use the
// former: https://github.com/google/angle/blob/main/util/EGLWindow.cpp#L424
EglDisplay::Legacy(display)
} else {
EglDisplay::Ext(display)
}
})
}
fn get_display(egl: &Egl, display: RawDisplayHandle) -> Result<EglDisplay> {
let display = match display {
RawDisplayHandle::Gbm(handle) => handle.gbm_device.as_ptr(),
RawDisplayHandle::Drm(_) => {
return Err(ErrorKind::NotSupported(
"`DrmDisplayHandle` must be used with `egl::display::Display::with_device()`",
)
.into())
},
RawDisplayHandle::Xlib(XlibDisplayHandle { display, .. }) => {
display.map_or(egl::DEFAULT_DISPLAY as *mut _, |d| d.as_ptr())
},
RawDisplayHandle::Android(_) | RawDisplayHandle::Ohos(_) => {
egl::DEFAULT_DISPLAY as *mut _
},
_ => {
return Err(
ErrorKind::NotSupported("provided display handle is not supported").into()
)
},
};
let display = unsafe { egl.GetDisplay(display) };
Self::check_display_error(display).map(EglDisplay::Legacy)
}
fn extract_display_features(
extensions: &HashSet<&'static str>,
version: Version,
) -> DisplayFeatures {
// Extract features.
let mut supported_features = DisplayFeatures::CREATE_ES_CONTEXT
| DisplayFeatures::MULTISAMPLING_PIXEL_FORMATS
| DisplayFeatures::SWAP_CONTROL;
supported_features.set(
DisplayFeatures::FLOAT_PIXEL_FORMAT,
extensions.contains("EGL_EXT_pixel_format_float"),
);
supported_features
.set(DisplayFeatures::SRGB_FRAMEBUFFERS, extensions.contains("EGL_KHR_gl_colorspace"));
supported_features.set(
DisplayFeatures::CONTEXT_ROBUSTNESS,
version > Version::new(1, 5)
|| extensions.contains("EGL_EXT_create_context_robustness"),
);
supported_features.set(
DisplayFeatures::CONTEXT_NO_ERROR,
extensions.contains("EGL_KHR_create_context_no_error"),
);
supported_features
}
fn check_display_error(display: EGLDisplay) -> Result<EGLDisplay> {
if display == egl::NO_DISPLAY {
// XXX the specification is a bit vague here, so fallback instead of hard
// assert.
Err(super::check_error().err().unwrap_or_else(|| {
ErrorKind::NotSupported("failed to create EGLDisplay without a reason").into()
}))
} else {
Ok(display)
}
}
fn initialize_display(
egl: &'static Egl,
display: EglDisplay,
raw_display_handle: Option<RawDisplayHandle>,
) -> Result<Self> {
let version = unsafe {
let (mut major, mut minor) = (0, 0);
if egl.Initialize(*display, &mut major, &mut minor) == egl::FALSE {
return Err(super::check_error().expect_err("eglInit failed without a reason"));
}
Version::new(major as u8, minor as u8)
};
let display = match display {
// `eglGetPlatformDisplay` and `GetPlatformDisplayEXT` aren't really differentiated,
// we must check if the version of the initialized display is not sensible for the
// EglDisplay type and downgrade it if so.
EglDisplay::Khr(display) if version <= Version { major: 1, minor: 4 } => {
let client_extensions = CLIENT_EXTENSIONS.get().unwrap();
if client_extensions.contains("EGL_EXT_platform_base")
&& (version == Version { major: 1, minor: 4 })
{
// `EGL_EXT_platform_base` requires EGL 1.4 per specification; we cannot safely
// presume that an `Ext` display would be valid for older versions.
EglDisplay::Ext(display)
} else {
EglDisplay::Legacy(display)
}
},
// We do not do anything otherwise.
display => display,
};
// Load extensions.
let display_extensions = get_extensions(egl, *display);
let features = Self::extract_display_features(&display_extensions, version);
let inner = Arc::new(DisplayInner {
egl,
raw: display,
_native_display: raw_display_handle.map(NativeDisplay),
version,
display_extensions,
features,
});
Ok(Self { inner })
}
}
impl GlDisplay for Display {
type Config = Config;
type NotCurrentContext = NotCurrentContext;
type PbufferSurface = Surface<PbufferSurface>;
type PixmapSurface = Surface<PixmapSurface>;
type WindowSurface = Surface<WindowSurface>;
unsafe fn find_configs(
&self,
template: ConfigTemplate,
) -> Result<Box<dyn Iterator<Item = Self::Config> + '_>> {
unsafe { Self::find_configs(self, template) }
}
unsafe fn create_window_surface(
&self,
config: &Self::Config,
surface_attributes: &SurfaceAttributes<WindowSurface>,
) -> Result<Self::WindowSurface> {
unsafe { Self::create_window_surface(self, config, surface_attributes) }
}
unsafe fn create_pbuffer_surface(
&self,
config: &Self::Config,
surface_attributes: &SurfaceAttributes<PbufferSurface>,
) -> Result<Self::PbufferSurface> {
unsafe { Self::create_pbuffer_surface(self, config, surface_attributes) }
}
unsafe fn create_context(
&self,
config: &Self::Config,
context_attributes: &crate::context::ContextAttributes,
) -> Result<Self::NotCurrentContext> {
unsafe { Self::create_context(self, config, context_attributes) }
}
unsafe fn create_pixmap_surface(
&self,
config: &Self::Config,
surface_attributes: &SurfaceAttributes<PixmapSurface>,
) -> Result<Self::PixmapSurface> {
unsafe { Self::create_pixmap_surface(self, config, surface_attributes) }
}
fn get_proc_address(&self, addr: &CStr) -> *const ffi::c_void {
unsafe { self.inner.egl.GetProcAddress(addr.as_ptr()) as *const _ }
}
fn version_string(&self) -> String {
format!("EGL {}.{}", self.inner.version.major, self.inner.version.minor)
}
fn supported_features(&self) -> DisplayFeatures {
self.inner.features
}
}
impl GetDisplayExtensions for Display {
fn extensions(&self) -> &HashSet<&'static str> {
&self.inner.display_extensions
}
}
impl AsRawDisplay for Display {
fn raw_display(&self) -> RawDisplay {
RawDisplay::Egl(*self.inner.raw)
}
}
impl Sealed for Display {}
pub(crate) struct DisplayInner {
/// Pointer to the EGL handler to simplify API calls.
pub(crate) egl: &'static Egl,
/// Pointer to the egl display.
pub(crate) raw: EglDisplay,
/// The version of the egl library.
pub(crate) version: Version,
/// Display EGL extensions.
pub(crate) display_extensions: HashSet<&'static str>,
/// The features supported by the display.
pub(crate) features: DisplayFeatures,
/// The raw display used to create EGL display.
pub(crate) _native_display: Option<NativeDisplay>,
}
impl DisplayInner {
fn uses_display_reference(&self) -> bool {
if !CLIENT_EXTENSIONS.get().unwrap().contains("EGL_KHR_display_reference") {
return false;
}
// If the EGL_TRACK_REFERENCES_KHR attribute is true, then EGL will internally
// reference count the display. If that is the case, glutin can
// terminate the display without worry for the instance being
// reused elsewhere.
let mut track_references = MaybeUninit::<EGLAttrib>::uninit();
(match self.raw {
EglDisplay::Khr(khr) => unsafe {
self.egl.QueryDisplayAttribKHR(
khr,
egl::TRACK_REFERENCES_KHR as _,
track_references.as_mut_ptr(),
)
},
EglDisplay::Ext(ext) => unsafe {
self.egl.QueryDisplayAttribEXT(
ext,
egl::TRACK_REFERENCES_KHR as _,
track_references.as_mut_ptr(),
)
},
EglDisplay::Legacy(_) => egl::FALSE,
} == egl::TRUE)
}
}
impl fmt::Debug for DisplayInner {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Display")
.field("raw", &self.raw)
.field("version", &self.version)
.field("features", &self.features)
.field("extensions", &self.display_extensions)
.finish()
}
}
impl Drop for DisplayInner {
fn drop(&mut self) {
if self.uses_display_reference() {
unsafe {
self.egl.Terminate(*self.raw);
}
}
// We cannot call safely call `eglTerminate`.
//
// This may sound confusing, but this is a result of how EGL works:
//
// From the documentation of `eglGetDisplay`:
// > Multiple calls made to eglGetDisplay with the same display_id will
// > return the same EGLDisplay handle.
//
// And from the documentation of `eglGetPlatformDisplay`:
// > Multiple calls made to eglGetPlatformDisplay with the same
// > parameters will return the same
// > EGLDisplay handle.
//
// Furthermore the following is done when a display is initialized:
// > Initializing an already initialized EGL display connection has no
// > effect besides returning the
// > version numbers.
//
// Terminating a display connection and then creating a new display
// connection will reference the same display. This effectively
// makes an EGLDisplay a singleton for the specified display_id or
// platform and native display.
//
// Because EGLDisplay is a singleton, this makes the following sequence
// problematic:
//
// 1. A display is created for a platform
// 2. A second display is created for the same platform
// 3. The first display is dropped, resulting in eglTerminate being
// called.
// 4. A context created from the second display is made
// current, but it has been terminated and returns an EGL_BAD_DISPLAY
// error.
//
// But wait? This causes a memory leak!
//
// Yes it does indeed result in a memory leak since we do not terminate
// displays on drop. For most applications there is only ever a
// single EGLDisplay for the lifetime of the application. The cost
// of not dropping the display is negligible because the display will
// probably be destroyed on app termination and we can let the
// operating system deal with tearing down EGL instead.
}
}
#[derive(Debug, Clone, Copy)]
pub(crate) struct NativeDisplay(RawDisplayHandle);
unsafe impl Send for NativeDisplay {}
unsafe impl Sync for NativeDisplay {}
impl Deref for NativeDisplay {
type Target = RawDisplayHandle;
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[derive(Debug, Clone)]
pub(crate) enum EglDisplay {
/// The display was created with the KHR extension.
Khr(EGLDisplay),
/// The display was created with the EXT extension.
Ext(EGLDisplay),
/// The display in use is a legacy variant.
Legacy(EGLDisplay),
}
// The EGL display could be shared between threads.
unsafe impl Send for EglDisplay {}
unsafe impl Sync for EglDisplay {}
impl Deref for EglDisplay {
type Target = EGLDisplay;
fn deref(&self) -> &Self::Target {
match self {
EglDisplay::Khr(display) => display,
EglDisplay::Ext(display) => display,
EglDisplay::Legacy(display) => display,
}
}
}
/// Collect EGL extensions for the given `display`.
pub(crate) fn get_extensions(egl: &Egl, display: EGLDisplay) -> HashSet<&'static str> {
unsafe {
let extensions = egl.QueryString(display, egl::EXTENSIONS as i32);
// SAFETY: The EGL specification guarantees the returned string is
// static and null terminated:
//
// > eglQueryString returns a pointer to a static, zero-terminated
// > string describing properties of the EGL client or of an EGL
// > display connection.
extensions_from_ptr(extensions)
}
}
/// # Safety
///
/// - The `extensions` pointer must be NULL (representing no extensions) or it
/// must be non-null and contain a static, null terminated C string.
pub(crate) unsafe fn extensions_from_ptr(extensions: *const c_char) -> HashSet<&'static str> {
if extensions.is_null() {
return HashSet::new();
}
// SAFETY: The caller has ensured the string pointer is null terminated.
if let Ok(extensions) = unsafe { CStr::from_ptr(extensions) }.to_str() {
extensions.split(' ').collect::<HashSet<&'static str>>()
} else {
HashSet::new()
}
}