[−][src]Struct conrod_rendy::UiTexture
A simple type that wraps a rendy Texture
and provides a conrod_core::mesh::ImageDimensions
implementation.
Implementations
impl<B> UiTexture<B> where
B: Backend,
[src]
B: Backend,
pub fn from_rgba_bytes(
bytes: &[u8],
dimensions: [u32; 2],
factory: &mut Factory<B>,
queue_id: QueueId
) -> Result<Self, BuildError>
[src]
bytes: &[u8],
dimensions: [u32; 2],
factory: &mut Factory<B>,
queue_id: QueueId
) -> Result<Self, BuildError>
An optional, simplified constructor for loading a UiTexture
from a slice of sRGBA bytes.
Methods from Deref<Target = Texture<B>>
pub fn image(&self) -> &Handle<Image<B>>
[src]
Get image handle.
pub fn sampler(&self) -> &Handle<Sampler<B>>
[src]
Get sampler handle.
pub fn view(&self) -> &ImageView<B>
[src]
Get reference to image view.
pub fn view_mut(&mut self) -> &mut ImageView<B>
[src]
Get mutable reference to image view.
pub fn premultiplied_alpha(&self) -> bool
[src]
Get whether texture has premultiplied alpha
Trait Implementations
impl<B> Deref for UiTexture<B> where
B: Backend,
[src]
B: Backend,
type Target = Texture<B>
The resulting type after dereferencing.
fn deref(&self) -> &Self::Target
[src]
impl<B> DerefMut for UiTexture<B> where
B: Backend,
[src]
B: Backend,
impl<B> From<Texture<B>> for UiTexture<B> where
B: Backend,
[src]
B: Backend,
impl<B> ImageDimensions for UiTexture<B> where
B: Backend,
[src]
B: Backend,
fn dimensions(&self) -> [u32; 2]
[src]
impl<B> Into<Texture<B>> for UiTexture<B> where
B: Backend,
[src]
B: Backend,
Auto Trait Implementations
impl<B> RefUnwindSafe for UiTexture<B> where
<B as Backend>::Image: RefUnwindSafe,
<B as Backend>::ImageView: RefUnwindSafe,
<B as Backend>::Memory: RefUnwindSafe,
<B as Backend>::Sampler: RefUnwindSafe,
<B as Backend>::Image: RefUnwindSafe,
<B as Backend>::ImageView: RefUnwindSafe,
<B as Backend>::Memory: RefUnwindSafe,
<B as Backend>::Sampler: RefUnwindSafe,
impl<B> Send for UiTexture<B> where
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
<B as Backend>::Sampler: Send + Sync,
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send,
<B as Backend>::Sampler: Send + Sync,
impl<B> Sync for UiTexture<B> where
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send + Sync,
<B as Backend>::Sampler: Send + Sync,
<B as Backend>::Image: Send + Sync,
<B as Backend>::ImageView: Send + Sync,
<B as Backend>::Sampler: Send + Sync,
impl<B> Unpin for UiTexture<B> where
<B as Backend>::ImageView: Unpin,
<B as Backend>::ImageView: Unpin,
impl<B> UnwindSafe for UiTexture<B> where
<B as Backend>::Image: RefUnwindSafe,
<B as Backend>::ImageView: UnwindSafe,
<B as Backend>::Memory: RefUnwindSafe,
<B as Backend>::Sampler: RefUnwindSafe,
<B as Backend>::Image: RefUnwindSafe,
<B as Backend>::ImageView: UnwindSafe,
<B as Backend>::Memory: RefUnwindSafe,
<B as Backend>::Sampler: RefUnwindSafe,
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>,