pub(crate) enum EGLSurfaceObjects {
TextureImage {
egl_image: *mut EGLImageKHROpaque,
framebuffer_object: c_uint,
texture_object: c_uint,
renderbuffers: Renderbuffers,
},
Window {
native_window: *const c_void,
egl_surface: *const c_void,
},
}
Variants§
Auto Trait Implementations§
impl Freeze for EGLSurfaceObjects
impl RefUnwindSafe for EGLSurfaceObjects
impl !Send for EGLSurfaceObjects
impl !Sync for EGLSurfaceObjects
impl Unpin for EGLSurfaceObjects
impl UnwindSafe for EGLSurfaceObjects
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more