[−][src]Struct glium::draw_parameters::SamplesPassedQuery
A query that allows you to know the number of samples written to the output during the draw operations where this query was active.
If you just want to know whether or not some samples have been written, you should use
a AnySamplesPassedQuery
query instead.
Implementations
impl SamplesPassedQuery
[src]
pub fn new<F: ?Sized>(
facade: &F
) -> Result<SamplesPassedQuery, QueryCreationError> where
F: Facade,
[src]
facade: &F
) -> Result<SamplesPassedQuery, QueryCreationError> where
F: Facade,
Builds a new query.
impl SamplesPassedQuery
[src]
pub fn is_ready(&self) -> bool
[src]
Queries the counter to see if the result is already available.
pub fn get(self) -> u32
[src]
Returns the value of the query. Blocks until it is available.
This function doesn't block if is_ready
would return true.
Note that you are strongly discouraged from calling this in the middle of the rendering process, as it may block for a long time.
Queries should either have their result written into a buffer, be used for conditional rendering, or stored and checked during the next frame.
pub fn to_buffer_u32(
&self,
target: BufferSlice<'_, u32>
) -> Result<(), ToBufferError>
[src]
&self,
target: BufferSlice<'_, u32>
) -> Result<(), ToBufferError>
Writes the result of the query to a buffer when it is available.
This function doesn't block. Instead it submits a commands to the GPU's commands queue and orders the GPU to write the result of the query to a buffer.
This operation is not necessarily supported everywhere.
Trait Implementations
impl Debug for SamplesPassedQuery
[src]
impl<'a> From<&'a SamplesPassedQuery> for SamplesQueryParam<'a>
[src]
fn from(r: &'a SamplesPassedQuery) -> SamplesQueryParam<'a>
[src]
impl GlObject for SamplesPassedQuery
[src]
Auto Trait Implementations
impl !RefUnwindSafe for SamplesPassedQuery
impl !Send for SamplesPassedQuery
impl !Sync for SamplesPassedQuery
impl Unpin for SamplesPassedQuery
impl !UnwindSafe for SamplesPassedQuery
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,