Enum gfx_gtk::GlRenderCallbackStatus[][src]

pub enum GlRenderCallbackStatus {
    Continue,
    Skip,
}

Hint returned at the end of Render and PostProcess calls. Returning Skip at the end of the render pass will bypass the postprocessing stage

Variants

Continue onto the next render pass, from Render to Postprocess

Skip the next render passes

Trait Implementations

impl Clone for GlRenderCallbackStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for GlRenderCallbackStatus
[src]

impl Debug for GlRenderCallbackStatus
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations