Struct glium::LinearSyncFence [] [src]

#[must_use]
pub struct LinearSyncFence {
    // some fields omitted
}

Prototype for a SyncFence.

The fence must be consumed with either into_sync_fence, otherwise the destructor will panic.

Methods

impl LinearSyncFence
[src]

fn into_sync_fence<F>(self, facade: &F) -> SyncFence where F: Facade

Turns the prototype into a real fence.

Trait Implementations

impl Send for LinearSyncFence
[src]

impl Drop for LinearSyncFence
[src]

fn drop(&mut self)

A method called when the value goes out of scope. Read more