Trait old_school_gfx_glutin_ext::ContextBuilderExt[][src]

pub trait ContextBuilderExt {
    fn with_gfx_color<Color: RenderFormat>(self) -> Self;
fn with_gfx_color_raw(self, color_format: Format) -> Self;
fn with_gfx_depth<Depth: DepthFormat>(self) -> Self;
fn with_gfx_depth_raw(self, ds_format: Format) -> Self;
fn with_gfx_color_depth<Color: RenderFormat, Depth: DepthFormat>(
        self
    ) -> Self; }

Required methods

Calls with_pixel_format & with_srgb according to the color format.

Calls with_pixel_format & with_srgb according to the color format.

Calls with_depth_buffer & with_stencil_buffer according to the depth format.

Calls with_depth_buffer & with_stencil_buffer according to the depth format.

Calls with_gfx_color & with_gfx_depth.

Implementations on Foreign Types

Implementors