gdkwayland/wayland_gl_context.rs
1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use crate::ffi;
4
5glib::wrapper! {
6 #[doc(alias = "GdkWaylandGLContext")]
7 pub struct WaylandGLContext(Object<ffi::GdkWaylandGLContext>) @extends gdk::GLContext;
8
9 match fn {
10 type_ => || ffi::gdk_wayland_gl_context_get_type(),
11 }
12}