1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use crate::Paintable;
use crate::Texture;
use glib::translate::*;
use std::fmt;
glib::wrapper! {
#[doc(alias = "GdkGLTexture")]
pub struct GLTexture(Object<ffi::GdkGLTexture, ffi::GdkGLTextureClass>) @extends Texture, @implements Paintable, gio::Icon, gio::LoadableIcon;
match fn {
type_ => || ffi::gdk_gl_texture_get_type(),
}
}
impl GLTexture {
#[doc(alias = "gdk_gl_texture_release")]
pub fn release(&self) {
unsafe {
ffi::gdk_gl_texture_release(self.to_glib_none().0);
}
}
}
unsafe impl Send for GLTexture {}
unsafe impl Sync for GLTexture {}
impl fmt::Display for GLTexture {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("GLTexture")
}
}