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
// This file was generated by gir (https://github.com/gtk-rs/gir) // from gir-files (https://github.com/gtk-rs/gir-files) // from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git) // DO NOT EDIT use glib::object::IsA; use glib::translate::*; glib::wrapper! { /// the contents of a [`crate::GLDisplayEGL`] are private and should only be accessed /// through the provided API /// /// # Implements /// /// [`trait@gst_gl::prelude::GLDisplayExt`], [`trait@gst::prelude::ObjectExt`], [`trait@glib::object::ObjectExt`] pub struct GLDisplayEGL(Object<ffi::GstGLDisplayEGL, ffi::GstGLDisplayEGLClass>) @extends gst_gl::GLDisplay, gst::Object; match fn { type_ => || ffi::gst_gl_display_egl_get_type(), } } impl GLDisplayEGL { /// Create a new [`crate::GLDisplayEGL`] using the default EGL_DEFAULT_DISPLAY. /// /// # Returns /// /// a new [`crate::GLDisplayEGL`] or [`None`] #[doc(alias = "gst_gl_display_egl_new")] pub fn new() -> GLDisplayEGL { assert_initialized_main_thread!(); unsafe { from_glib_full(ffi::gst_gl_display_egl_new()) } } //#[doc(alias = "gst_gl_display_egl_new_with_egl_display")] //#[doc(alias = "new_with_egl_display")] //pub fn with_egl_display(display: /*Unimplemented*/Option<Fundamental: Pointer>) -> GLDisplayEGL { // unsafe { TODO: call ffi:gst_gl_display_egl_new_with_egl_display() } //} /// Creates a EGL display connection from a native Display. /// /// This function will return the same value for multiple calls with the same /// `display`. /// ## `display` /// an existing [`crate::gst_gl::GLDisplay`] /// /// # Returns /// /// a new [`crate::GLDisplayEGL`] #[doc(alias = "gst_gl_display_egl_from_gl_display")] pub fn from_gl_display<P: IsA<gst_gl::GLDisplay>>(display: &P) -> Option<GLDisplayEGL> { assert_initialized_main_thread!(); unsafe { from_glib_full(ffi::gst_gl_display_egl_from_gl_display( display.as_ref().to_glib_none().0, )) } } //#[doc(alias = "gst_gl_display_egl_get_from_native")] //#[doc(alias = "get_from_native")] //pub fn from_native(type_: /*Ignored*/gst_gl::GLDisplayType, display: /*Unimplemented*/Fundamental: UIntPtr) -> /*Unimplemented*/Option<Fundamental: Pointer> { // unsafe { TODO: call ffi:gst_gl_display_egl_get_from_native() } //} } impl Default for GLDisplayEGL { fn default() -> Self { Self::new() } } unsafe impl Send for GLDisplayEGL {} unsafe impl Sync for GLDisplayEGL {} pub const NONE_GL_DISPLAY_EGL: Option<&GLDisplayEGL> = None;