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
45
46
47
48
49
use crate::MemoryFormat;
use crate::Paintable;
use crate::Texture;
use glib::translate::*;
use std::fmt;
glib::wrapper! {
#[doc(alias = "GdkMemoryTexture")]
pub struct MemoryTexture(Object<ffi::GdkMemoryTexture, ffi::GdkMemoryTextureClass>) @extends Texture, @implements Paintable, gio::Icon, gio::LoadableIcon;
match fn {
type_ => || ffi::gdk_memory_texture_get_type(),
}
}
impl MemoryTexture {
#[doc(alias = "gdk_memory_texture_new")]
pub fn new(
width: i32,
height: i32,
format: MemoryFormat,
bytes: &glib::Bytes,
stride: usize,
) -> MemoryTexture {
assert_initialized_main_thread!();
unsafe {
from_glib_full(ffi::gdk_memory_texture_new(
width,
height,
format.into_glib(),
bytes.to_glib_none().0,
stride,
))
}
}
}
unsafe impl Send for MemoryTexture {}
unsafe impl Sync for MemoryTexture {}
impl fmt::Display for MemoryTexture {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("MemoryTexture")
}
}