gstreamer-rs/gstreamer-gl/src/auto/gl_display.rs

215 lines
6.7 KiB
Rust
Raw Normal View History

2018-11-27 21:52:42 +00:00
// 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
2020-11-22 10:20:20 +00:00
use crate::GLContext;
use crate::GLDisplayType;
use crate::GLWindow;
use crate::GLAPI;
2019-01-16 11:32:39 +00:00
use glib::object::Cast;
2018-11-27 21:52:42 +00:00
use glib::object::IsA;
use glib::signal::connect_raw;
use glib::signal::SignalHandlerId;
2018-11-27 21:52:42 +00:00
use glib::translate::*;
use std::boxed::Box as Box_;
2020-04-13 16:11:33 +00:00
use std::mem::transmute;
2018-11-27 21:52:42 +00:00
use std::ptr;
2020-11-22 10:20:20 +00:00
glib::glib_wrapper! {
pub struct GLDisplay(Object<ffi::GstGLDisplay, ffi::GstGLDisplayClass>) @extends gst::Object;
2018-11-27 21:52:42 +00:00
match fn {
2020-11-22 10:20:20 +00:00
get_type => || ffi::gst_gl_display_get_type(),
2018-11-27 21:52:42 +00:00
}
}
impl GLDisplay {
pub fn new() -> GLDisplay {
assert_initialized_main_thread!();
2020-11-22 10:20:20 +00:00
unsafe { from_glib_full(ffi::gst_gl_display_new()) }
2018-11-27 21:52:42 +00:00
}
}
impl Default for GLDisplay {
fn default() -> Self {
Self::new()
}
}
unsafe impl Send for GLDisplay {}
unsafe impl Sync for GLDisplay {}
2019-01-16 11:32:39 +00:00
pub const NONE_GL_DISPLAY: Option<&GLDisplay> = None;
pub trait GLDisplayExt: 'static {
2019-01-16 11:32:39 +00:00
fn add_context<P: IsA<GLContext>>(&self, context: &P) -> Result<(), glib::error::BoolError>;
2018-11-27 21:52:42 +00:00
2019-11-10 16:55:02 +00:00
fn create_context<P: IsA<GLContext>>(
&self,
other_context: &P,
) -> Result<GLContext, glib::Error>;
2018-11-27 21:52:42 +00:00
fn create_window(&self) -> Result<GLWindow, glib::BoolError>;
2018-11-27 21:52:42 +00:00
fn filter_gl_api(&self, gl_api: GLAPI);
fn get_gl_api(&self) -> GLAPI;
fn get_gl_api_unlocked(&self) -> GLAPI;
fn get_handle_type(&self) -> GLDisplayType;
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
fn remove_context<P: IsA<GLContext>>(&self, context: &P);
2019-01-16 11:32:39 +00:00
fn remove_window<P: IsA<GLWindow>>(&self, window: &P) -> Result<(), glib::error::BoolError>;
2018-11-27 21:52:42 +00:00
2020-11-27 13:37:24 +00:00
//#[cfg(any(feature = "v1_18", feature = "dox"))]
//#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
//fn retrieve_window(&self, data: /*Unimplemented*/Option<Fundamental: Pointer>, compare_func: /*Unimplemented*/FnMut(/*Unimplemented*/Option<Fundamental: Pointer>, /*Unimplemented*/Option<Fundamental: Pointer>) -> i32) -> Option<GLWindow>;
fn connect_create_context<F: Fn(&Self, &GLContext) -> GLContext + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId;
2018-11-27 21:52:42 +00:00
}
impl<O: IsA<GLDisplay>> GLDisplayExt for O {
2019-01-16 11:32:39 +00:00
fn add_context<P: IsA<GLContext>>(&self, context: &P) -> Result<(), glib::error::BoolError> {
2018-11-27 21:52:42 +00:00
unsafe {
2020-11-22 10:20:20 +00:00
glib::glib_result_from_gboolean!(
ffi::gst_gl_display_add_context(
self.as_ref().to_glib_none().0,
context.as_ref().to_glib_none().0
),
"Failed to add OpenGL context"
)
2018-11-27 21:52:42 +00:00
}
}
2019-11-10 16:55:02 +00:00
fn create_context<P: IsA<GLContext>>(
&self,
other_context: &P,
) -> Result<GLContext, glib::Error> {
2018-11-27 21:52:42 +00:00
unsafe {
let mut p_context = ptr::null_mut();
let mut error = ptr::null_mut();
2020-11-22 10:20:20 +00:00
let _ = ffi::gst_gl_display_create_context(
self.as_ref().to_glib_none().0,
other_context.as_ref().to_glib_none().0,
&mut p_context,
&mut error,
);
if error.is_null() {
Ok(from_glib_full(p_context))
} else {
Err(from_glib_full(error))
}
2018-11-27 21:52:42 +00:00
}
}
fn create_window(&self) -> Result<GLWindow, glib::BoolError> {
2018-11-27 21:52:42 +00:00
unsafe {
2020-11-22 10:20:20 +00:00
Option::<_>::from_glib_full(ffi::gst_gl_display_create_window(
self.as_ref().to_glib_none().0,
))
2020-11-22 10:20:20 +00:00
.ok_or_else(|| glib::glib_bool_error!("Failed to create window"))
2018-11-27 21:52:42 +00:00
}
}
fn filter_gl_api(&self, gl_api: GLAPI) {
unsafe {
2020-11-22 10:20:20 +00:00
ffi::gst_gl_display_filter_gl_api(self.as_ref().to_glib_none().0, gl_api.to_glib());
2018-11-27 21:52:42 +00:00
}
}
fn get_gl_api(&self) -> GLAPI {
unsafe {
2020-11-22 10:20:20 +00:00
from_glib(ffi::gst_gl_display_get_gl_api(
self.as_ref().to_glib_none().0,
))
2018-11-27 21:52:42 +00:00
}
}
fn get_gl_api_unlocked(&self) -> GLAPI {
unsafe {
2020-11-22 10:20:20 +00:00
from_glib(ffi::gst_gl_display_get_gl_api_unlocked(
self.as_ref().to_glib_none().0,
))
2018-11-27 21:52:42 +00:00
}
}
fn get_handle_type(&self) -> GLDisplayType {
unsafe {
2020-11-22 10:20:20 +00:00
from_glib(ffi::gst_gl_display_get_handle_type(
self.as_ref().to_glib_none().0,
))
2018-11-27 21:52:42 +00:00
}
}
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
fn remove_context<P: IsA<GLContext>>(&self, context: &P) {
unsafe {
2020-11-22 10:20:20 +00:00
ffi::gst_gl_display_remove_context(
2020-04-30 16:51:41 +00:00
self.as_ref().to_glib_none().0,
context.as_ref().to_glib_none().0,
);
}
}
2019-01-16 11:32:39 +00:00
fn remove_window<P: IsA<GLWindow>>(&self, window: &P) -> Result<(), glib::error::BoolError> {
2018-11-27 21:52:42 +00:00
unsafe {
2020-11-22 10:20:20 +00:00
glib::glib_result_from_gboolean!(
ffi::gst_gl_display_remove_window(
self.as_ref().to_glib_none().0,
window.as_ref().to_glib_none().0
),
"Failed to remove window"
)
2018-11-27 21:52:42 +00:00
}
}
2020-11-27 13:37:24 +00:00
//#[cfg(any(feature = "v1_18", feature = "dox"))]
//#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
//fn retrieve_window(&self, data: /*Unimplemented*/Option<Fundamental: Pointer>, compare_func: /*Unimplemented*/FnMut(/*Unimplemented*/Option<Fundamental: Pointer>, /*Unimplemented*/Option<Fundamental: Pointer>) -> i32) -> Option<GLWindow> {
2020-11-22 10:20:20 +00:00
// unsafe { TODO: call ffi:gst_gl_display_retrieve_window() }
2020-04-30 16:51:41 +00:00
//}
fn connect_create_context<F: Fn(&Self, &GLContext) -> GLContext + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn create_context_trampoline<
P,
F: Fn(&P, &GLContext) -> GLContext + Send + Sync + 'static,
>(
2020-11-22 10:20:20 +00:00
this: *mut ffi::GstGLDisplay,
context: *mut ffi::GstGLContext,
f: glib::ffi::gpointer,
) -> *mut ffi::GstGLContext
where
P: IsA<GLDisplay>,
2019-06-18 10:10:46 +00:00
{
let f: &F = &*(f as *const F);
f(
&GLDisplay::from_glib_borrow(this).unsafe_cast_ref(),
&from_glib_borrow(context),
)
.to_glib_full()
2019-06-18 10:10:46 +00:00
}
2018-11-27 21:52:42 +00:00
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"create-context\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
create_context_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
2018-11-27 21:52:42 +00:00
}
}
}