use crate::{Context, Object};
use glib::translate::*;
use std::fmt;
glib_wrapper! {
pub struct IndexBuffer(Object<ffi::CoglIndexBuffer, IndexBufferClass>) @extends Object;
match fn {
get_type => || ffi::cogl_index_buffer_get_gtype(),
}
}
impl IndexBuffer {
pub fn new(context: &Context, bytes: usize) -> IndexBuffer {
unsafe { from_glib_full(ffi::cogl_index_buffer_new(context.to_glib_none().0, bytes)) }
}
}
impl fmt::Display for IndexBuffer {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "IndexBuffer")
}
}