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 36 37 38 39 40 41 42 43 44
// 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
use crate::{Paintable, Texture};
use glib::translate::*;
use std::fmt;
glib::wrapper! {
/// A GdkTexture representing a GL texture object.
///
/// # Implements
///
/// [`TextureExt`][trait@crate::prelude::TextureExt], [`PaintableExt`][trait@crate::prelude::PaintableExt], [`trait@gio::prelude::IconExt`], [`trait@gio::prelude::LoadableIconExt`], [`TextureExtManual`][trait@crate::prelude::TextureExtManual]
#[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 {
/// Releases the GL resources held by a [`GLTexture`][crate::GLTexture].
///
/// The texture contents are still available via the
/// [`TextureExtManual::download()`][crate::prelude::TextureExtManual::download()] function, after this
/// function has been called.
#[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")
}
}