// Copyright (C) 2019 Víctor Jáquez // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use ffi; use glib::translate::*; use glib_ffi::gpointer; use libc::uintptr_t; use GLDisplayX11; impl GLDisplayX11 { pub unsafe fn new_with_display(display: uintptr_t) -> Option { from_glib_full(ffi::gst_gl_display_x11_new_with_display( display as gpointer, )) } }