Struct glium::buffer::WriteMapping [] [src]

pub struct WriteMapping<'b, D: ?Sized> where D: Content {
    // some fields omitted
}

A mapping of a buffer for write only.

Methods

impl<'b, D> WriteMapping<'b, D> where D: Content + Copy
[src]

fn write(&mut self, value: D)

Writes the whole content.

impl<'b, D> WriteMapping<'b, [D]> where [D]: Content, D: Copy
[src]

fn len(&self) -> usize

Returns the length of the mapping.

fn set(&mut self, index: usize, value: D)

Changes an element of the mapping.

Panic

Panics if out of range.