Struct glium::SyncFence [] [src]

pub struct SyncFence {
    // some fields omitted
}

Provides a way to wait for a server-side operation to be finished.

Creating a SyncFence injects an element in the commands queue of the backend. When this element is reached, the fence becomes signaled.

Example

let fence = glium::SyncFence::new(&display).unwrap();
do_something(&display);
fence.wait();   // blocks until the previous operations have finished

Methods

impl SyncFence
[src]

fn new<F>(facade: &F) -> Result<SyncFence, SyncNotSupportedError> where F: Facade

Builds a new SyncFence that is injected in the server.

fn wait(self)

Blocks until the operation has finished on the server.

Trait Implementations

impl Drop for SyncFence
[src]

fn drop(&mut self)

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