[][src]Struct conrod_vulkano::GlyphCacheCommand

pub struct GlyphCacheCommand<'a> {
    pub glyph_cache_pixel_buffer: &'a [u8],
    pub glyph_cpu_buffer_pool: Arc<CpuBufferPool<u8>>,
    pub glyph_cache_texture: Arc<StorageImage<R8Unorm>>,
}

An command for uploading an individual glyph.

Fields

glyph_cache_pixel_buffer: &'a [u8]

The CPU buffer containing the pixel data.

glyph_cpu_buffer_pool: Arc<CpuBufferPool<u8>>

The cpu buffer pool used to upload glyph pixels.

glyph_cache_texture: Arc<StorageImage<R8Unorm>>

The GPU image to which the glyphs are cached.

Auto Trait Implementations

impl<'a> RefUnwindSafe for GlyphCacheCommand<'a>

impl<'a> Send for GlyphCacheCommand<'a>

impl<'a> Sync for GlyphCacheCommand<'a>

impl<'a> Unpin for GlyphCacheCommand<'a>

impl<'a> UnwindSafe for GlyphCacheCommand<'a>

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> Content for T[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.