Struct glium::debug::TimestampQuery

source ·
pub struct TimestampQuery { /* private fields */ }
Expand description

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§

source§

impl TimestampQuery

source

pub fn new<F>(facade: &F) -> Option<TimestampQuery>where F: Facade + ?Sized,

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

source

pub fn is_ready(&self) -> bool

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.

source

pub fn get(self) -> u64

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

This function doesn’t block if is_ready returns true.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.