[][src]Struct glium::debug::TimestampQuery

pub struct TimestampQuery { /* fields omitted */ }

Allows you to obtain the timestamp inside the OpenGL commands queue.

When you call functions in glium, they are not instantly executed. Instead they are added in a commands queue that the backend executes asynchronously.

When you call TimestampQuery::new, a command is added to this list asking the backend to send us the current timestamp. Thanks to this, you can know how much time it takes to execute commands.

Example

let before = glium::debug::TimestampQuery::new(&display);
// do some stuff here
let after = glium::debug::TimestampQuery::new(&display);

match (after, before) {
    (Some(after), Some(before)) => {
        let elapsed = after.get() - before.get();
        println!("Time it took to do stuff: {}", elapsed);
    },
    _ => ()
}

Implementations

impl TimestampQuery[src]

pub fn new<F: ?Sized>(facade: &F) -> Option<TimestampQuery> where
    F: Facade
[src]

Creates a new TimestampQuery. Returns None if the backend doesn't support it.

pub fn is_ready(&self) -> bool[src]

Queries the counter to see if the timestamp is already available.

It takes some time to retrieve the value, during which you can execute other functions.

pub fn get(self) -> u64[src]

Returns the value of the timestamp. Blocks until it is available.

This function doesn't block if is_ready returns true.

Auto Trait Implementations

impl !RefUnwindSafe for TimestampQuery

impl !Send for TimestampQuery

impl !Sync for TimestampQuery

impl Unpin for TimestampQuery

impl !UnwindSafe for TimestampQuery

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.