Skip to content
Snippets Groups Projects

Update GStreamer gir files

Merged Sebastian Dröge requested to merge slomo/gstreamer-rs:update-gst-gir-files into main
1 file
+ 0
23
Compare changes
  • Side-by-side
  • Inline
@@ -4,9 +4,6 @@
// DO NOT EDIT
use crate::NavigationCommand;
#[cfg(feature = "v1_26")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_26")))]
use crate::NavigationModifierType;
use glib::{prelude::*, translate::*};
glib::wrapper! {
@@ -21,26 +18,6 @@ glib::wrapper! {
impl Navigation {
pub const NONE: Option<&'static Navigation> = None;
#[cfg(feature = "v1_26")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_26")))]
#[doc(alias = "gst_navigation_event_new_mouse_double_click")]
pub fn event_new_mouse_double_click(
button: i32,
x: f64,
y: f64,
state: NavigationModifierType,
) -> gst::Event {
assert_initialized_main_thread!();
unsafe {
from_glib_full(ffi::gst_navigation_event_new_mouse_double_click(
button,
x,
y,
state.into_glib(),
))
}
}
//#[doc(alias = "gst_navigation_query_set_commands")]
//pub fn query_set_commands(query: &gst::Query, n_cmds: i32, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs) {
// unsafe { TODO: call ffi:gst_navigation_query_set_commands() }
Loading