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
// This file was generated by gir (https://github.com/gtk-rs/gir) // from gir-files (https://github.com/gtk-rs/gir-files) // DO NOT EDIT use glib::translate::*; use gst; use gst_gl_sys; use GLDisplay; glib_wrapper! { /// the contents of a `GLDisplayWayland` are private and should only be accessed /// through the provided API /// /// # Implements /// /// [`GLDisplayExt`](trait.GLDisplayExt.html), [`gst::ObjectExt`](../gst/trait.ObjectExt.html), [`glib::object::ObjectExt`](../glib/object/trait.ObjectExt.html) pub struct GLDisplayWayland(Object<gst_gl_sys::GstGLDisplayWayland, gst_gl_sys::GstGLDisplayWaylandClass, GLDisplayWaylandClass>) @extends GLDisplay, gst::Object; match fn { get_type => || gst_gl_sys::gst_gl_display_wayland_get_type(), } } impl GLDisplayWayland { /// Create a new `GLDisplayWayland` from the wayland display name. See `wl_display_connect` /// for details on what is a valid name. /// ## `name` /// a display name /// /// # Returns /// /// a new `GLDisplayWayland` or `None` pub fn new(name: Option<&str>) -> GLDisplayWayland { assert_initialized_main_thread!(); unsafe { from_glib_full(gst_gl_sys::gst_gl_display_wayland_new( name.to_glib_none().0, )) } } //pub fn new_with_display(display: /*Unimplemented*/Option<Fundamental: Pointer>) -> GLDisplayWayland { // unsafe { TODO: call gst_gl_sys:gst_gl_display_wayland_new_with_display() } //} } unsafe impl Send for GLDisplayWayland {} unsafe impl Sync for GLDisplayWayland {}