Struct nannou::wgpu::TextureSnapshot
source · pub struct TextureSnapshot { /* private fields */ }
Expand description
A snapshot captured by a Capturer.
A snapshot is a thin wrapper around a wgpu::BufferImage that knows that the image format is specifically non-linear sRGBA8.
Implementations§
source§impl Snapshot
impl Snapshot
sourcepub async fn read_async<'buffer>(
&'buffer self
) -> Result<Rgba8AsyncMappedImageBuffer<'buffer>, BufferAsyncError>
pub async fn read_async<'buffer>( &'buffer self ) -> Result<Rgba8AsyncMappedImageBuffer<'buffer>, BufferAsyncError>
Reads the non-linear sRGBA image from mapped memory and convert it to an owned buffer.
sourcepub fn read<F>(
self,
callback: F
) -> Result<(), AwaitWorkerTimeout<impl Future<Output = ()>>>
pub fn read<F>( self, callback: F ) -> Result<(), AwaitWorkerTimeout<impl Future<Output = ()>>>
The same as read_async
, but runs the resulting future on an inner threadpool and calls
the given callback with the mapped image buffer once complete.
Note: The given callback will not be called until the memory is mapped and the device is polled. You should not rely on the callback being called immediately.
Note: The given callback will be called on the inner thread pool and will not be called on the current thread.
Note: This method may block if the associated wgpu::TextureCapturer
has an
active_futures
count that is greater than the number of worker threads with which it was
created. This is necessary in order to avoid “out of memory” errors resulting from an
accumulating queue of pending texture buffers waiting to be mapped. To avoid blocking, you
can try using a higher thread count, capturing a smaller texture, or using read_async
instead and running the resulting future on a custom runtime or threadpool.
Auto Trait Implementations§
impl !RefUnwindSafe for Snapshot
impl Send for Snapshot
impl Sync for Snapshot
impl Unpin for Snapshot
impl !UnwindSafe for Snapshot
Blanket Implementations§
source§impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
source§fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<Swp, Dwp, T>,
source§fn adapt_into(self) -> D
fn adapt_into(self) -> D
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T, U> ConvertInto<U> for Twhere
U: ConvertFrom<T>,
impl<T, U> ConvertInto<U> for Twhere
U: ConvertFrom<T>,
source§fn convert_into(self) -> U
fn convert_into(self) -> U
source§fn convert_unclamped_into(self) -> U
fn convert_unclamped_into(self) -> U
source§fn try_convert_into(self) -> Result<U, OutOfBounds<U>>
fn try_convert_into(self) -> Result<U, OutOfBounds<U>>
OutOfBounds
error is returned which contains the unclamped color. Read more