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
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
use crate::{Bitmap, Context, Object, PixelFormat, Texture};
use ffi;
use glib;
use glib::translate::*;
use std::{fmt, ptr};

glib_wrapper! {
    pub struct Texture2D(Object<ffi::CoglTexture2D, Texture2DClass>) @extends Object, @implements Texture;

    match fn {
        get_type => || ffi::cogl_texture_2d_get_gtype(),
    }
}

impl Texture2D {
    /// Wraps an existing GL_TEXTURE_2D texture object as a `Texture2D`.
    /// This can be used for integrating Cogl with software using OpenGL
    /// directly.
    ///
    /// The texture is still configurable until it has been allocated so
    /// for example you can declare whether the texture is premultiplied
    /// with `Texture::set_premultiplied`.
    ///
    /// `<note>`The results are undefined for passing an invalid `gl_handle`
    /// or if `width` or `height` don't have the correct texture
    /// geometry.`</note>`
    ///
    /// ## `ctx`
    /// A `Context`
    /// ## `gl_handle`
    /// A GL handle for a GL_TEXTURE_2D texture object
    /// ## `width`
    /// Width of the foreign GL texture
    /// ## `height`
    /// Height of the foreign GL texture
    /// ## `format`
    /// The format of the texture
    ///
    /// # Returns
    ///
    /// A newly allocated `Texture2D`
    pub fn gl_new_from_foreign(
        ctx: &Context,
        gl_handle: u32,
        width: i32,
        height: i32,
        format: PixelFormat,
    ) -> Texture2D {
        skip_assert_initialized!();
        unsafe {
            from_glib_full(ffi::cogl_texture_2d_gl_new_from_foreign(
                ctx.to_glib_none().0,
                gl_handle,
                width,
                height,
                format.to_glib(),
            ))
        }
    }

    pub fn from_bitmap(bitmap: &Bitmap) -> Texture2D {
        skip_assert_initialized!();
        unsafe {
            from_glib_full(ffi::cogl_texture_2d_new_from_bitmap(
                bitmap.to_glib_none().0,
            ))
        }
    }

    //TODO:
    // pub fn from_data(
    //     ctx: &Context,
    //     width: i32,
    //     height: i32,
    //     format: PixelFormat,
    //     rowstride: i32,
    //     data: u8,
    // ) -> Result<Texture2D, glib::Error> {
    //     // skip_assert_initialized!();
    //     // unsafe {
    //     //     let mut error = ptr::null_mut();
    //     //     let ret = ffi::cogl_texture_2d_new_from_data(
    //     //         ctx.to_glib_none().0,
    //     //         width,
    //     //         height,
    //     //         format.to_glib(),
    //     //         rowstride,
    //     //         data,
    //     //         &mut error,
    //     //     );
    //     //     if error.is_null() {
    //     //         Ok(from_glib_full(ret))
    //     //     } else {
    //     //         Err(from_glib_full(error))
    //     //     }
    //     // }
    // }

    pub fn from_file(ctx: &Context, filename: &str) -> Result<Texture2D, glib::Error> {
        skip_assert_initialized!();
        unsafe {
            let mut error = ptr::null_mut();
            let ret = ffi::cogl_texture_2d_new_from_file(
                ctx.to_glib_none().0,
                filename.to_glib_none().0,
                &mut error,
            );
            if error.is_null() {
                Ok(from_glib_full(ret))
            } else {
                Err(from_glib_full(error))
            }
        }
    }

    pub fn with_size(ctx: &Context, width: i32, height: i32) -> Texture2D {
        skip_assert_initialized!();
        unsafe {
            from_glib_full(ffi::cogl_texture_2d_new_with_size(
                ctx.to_glib_none().0,
                width,
                height,
            ))
        }
    }
}

impl fmt::Display for Texture2D {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "Texture2D")
    }
}