Struct conrod::backend::glium::glium::draw_parameters::ConditionalRendering[][src]

pub struct ConditionalRendering<'a> {
    pub query: SamplesQueryParam<'a>,
    pub wait: bool,
    pub per_region: bool,
}

Condition whether to render or not.

Fields

The query to use.

If true, the GPU will wait until the query result has been obtained. If false, the GPU is free to ignore the query and draw anyway.

If true, only samples that match those that were written with the query active will be drawn.

Trait Implementations

impl<'a> Clone for ConditionalRendering<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Debug for ConditionalRendering<'a>
[src]

Formats the value using the given formatter. Read more

impl<'a> Copy for ConditionalRendering<'a>
[src]

Auto Trait Implementations

impl<'a> !Send for ConditionalRendering<'a>

impl<'a> !Sync for ConditionalRendering<'a>