2018-11-27 21:52:42 +00:00
|
|
|
// Copyright (C) 2018 Víctor Jáquez <vjaquez@igalia.com>
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2023-01-03 18:58:25 +00:00
|
|
|
use glib::{ffi::gpointer, translate::*};
|
2020-11-25 19:48:20 +00:00
|
|
|
use gst_gl::GLDisplayType;
|
2018-11-27 21:52:42 +00:00
|
|
|
use libc::uintptr_t;
|
|
|
|
|
2023-01-03 18:58:25 +00:00
|
|
|
use crate::GLDisplayEGL;
|
|
|
|
|
2018-11-27 21:52:42 +00:00
|
|
|
impl GLDisplayEGL {
|
2023-10-28 08:49:22 +00:00
|
|
|
#[doc(alias = "gst_gl_display_egl_new_with_egl_display")]
|
|
|
|
#[doc(alias = "new_with_egl_display")]
|
2020-06-11 08:53:35 +00:00
|
|
|
pub unsafe fn with_egl_display(
|
2019-11-24 20:55:54 +00:00
|
|
|
display: uintptr_t,
|
|
|
|
) -> Result<GLDisplayEGL, glib::error::BoolError> {
|
2020-11-25 19:48:20 +00:00
|
|
|
from_glib_full::<_, Option<GLDisplayEGL>>(ffi::gst_gl_display_egl_new_with_egl_display(
|
2018-11-27 21:52:42 +00:00
|
|
|
display as gpointer,
|
2020-11-25 19:48:20 +00:00
|
|
|
))
|
2020-12-17 22:38:06 +00:00
|
|
|
.ok_or_else(|| glib::bool_error!("Failed to create new EGL GL display"))
|
2018-11-27 21:52:42 +00:00
|
|
|
}
|
|
|
|
|
2023-10-28 08:49:22 +00:00
|
|
|
#[doc(alias = "gst_gl_display_egl_get_from_native")]
|
2021-05-02 09:41:18 +00:00
|
|
|
#[doc(alias = "get_from_native")]
|
2021-04-20 10:23:24 +00:00
|
|
|
pub unsafe fn from_native(display_type: GLDisplayType, display: uintptr_t) -> gpointer {
|
2021-04-27 15:15:46 +00:00
|
|
|
ffi::gst_gl_display_egl_get_from_native(display_type.into_glib(), display)
|
2018-11-27 21:52:42 +00:00
|
|
|
}
|
|
|
|
}
|