[][src]Struct oxydyze::util::renderer::SdlSystem

pub struct SdlSystem { /* fields omitted */ }

Methods

impl SdlSystem[src]

pub fn new(
    w: u32,
    h: u32,
    name: &str,
    default_font: &Path
) -> Result<SdlSystem, String>
[src]

pub fn sdl_textures(&self) -> SdlTextures[src]

pub fn render_text(&mut self, text_box: SdlTextBox)[src]

pub fn begin_frame(&mut self)[src]

pub fn end_frame(&mut self)[src]

pub fn render_all(&mut self, textures: &SdlTextures, drawables: &[&SdlDrawable])[src]

pub fn draw(&mut self, drawable: &SdlDrawable, textures: &SdlTextures)[src]

Trait Implementations

impl System for SdlSystem[src]

Auto Trait Implementations

impl !RefUnwindSafe for SdlSystem

impl !Send for SdlSystem

impl !Sync for SdlSystem

impl Unpin for SdlSystem

impl !UnwindSafe for SdlSystem

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<R> Resource for R where
    R: 'static + Any
[src]

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.