Struct meliusgfx::render::Renderer[][src]

pub struct Renderer { /* fields omitted */ }

Implementations

impl Renderer[src]

pub fn new<F>(
    address: F,
    multisample: bool,
    depth_test: bool,
    cull_face: FaceCulling,
    debug_filters: Vec<DebugFilter>
) -> Self where
    F: FnMut(&'static str) -> *const c_void
[src]

pub fn create_object(
    &mut self,
    vertices: Option<Vec<Vertex>>,
    indices: Option<Vec<u32>>,
    material: Material
) -> u32
[src]

pub fn set_material_attribute(&mut self, object: u32, n: &str, t: AttributeType)[src]

pub fn change_object(
    &mut self,
    object: u32,
    vertices: Option<Vec<Vertex>>,
    indices: Option<Vec<u32>>
)
[src]

pub fn render(&mut self, bg_color: (f32, f32, f32, f32))[src]

pub fn resize_viewport(&mut self, x: i32, y: i32)[src]

pub fn terminate(&mut self)[src]

pub fn enable_vertex_attrib_ptr(
    index: u32,
    size: i32,
    stride: i32,
    offset: usize
)
[src]

Auto Trait Implementations

impl RefUnwindSafe for Renderer

impl !Send for Renderer

impl !Sync for Renderer

impl Unpin for Renderer

impl UnwindSafe for Renderer

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.