Struct gfx_graphics::Gfx2d[][src]

pub struct Gfx2d<R: Resources> { /* fields omitted */ }

The data used for drawing 2D graphics.

Stores buffers and PSO objects needed for rendering 2D graphics.

Implementations

impl<R: Resources> Gfx2d<R>[src]

pub fn new<F>(opengl: OpenGL, factory: &mut F) -> Self where
    F: Factory<R>, 
[src]

Creates a new Gfx2d object.

pub fn draw<C, F, U>(
    &mut self,
    encoder: &mut Encoder<R, C>,
    output_color: &RenderTargetView<R, Srgba8>,
    output_stencil: &DepthStencilView<R, DepthStencil>,
    viewport: Viewport,
    f: F
) -> U where
    C: CommandBuffer<R>,
    F: FnOnce(Context, &mut GfxGraphics<'_, R, C>) -> U, 
[src]

Renders graphics to a Gfx renderer.

Auto Trait Implementations

impl<R> !RefUnwindSafe for Gfx2d<R>

impl<R> Send for Gfx2d<R>

impl<R> Sync for Gfx2d<R>

impl<R> Unpin for Gfx2d<R>

impl<R> !UnwindSafe for Gfx2d<R>

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[src]

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.