[][src]Struct rendy_texture::TextureBuilder

pub struct TextureBuilder<'a> { /* fields omitted */ }

Generics-free texture builder. Struct for staging data in preparation of building a Texture

Methods

impl<'a> TextureBuilder<'a>[src]

pub fn new() -> Self[src]

New empty TextureBuilder

pub fn set_premultiplied_alpha(&mut self, premultiplied: bool) -> &mut Self[src]

Set whether the image has premultiplied alpha

pub fn with_premultiplied_alpha(self, premultiplied: bool) -> Self[src]

Set whether the image has premultiplied alpha

pub fn with_data<P: AsPixel>(self, data: impl Into<Cow<'a, [P]>>) -> Self[src]

Set pixel data.

pub fn set_data<P: AsPixel>(
    &mut self,
    data: impl Into<Cow<'a, [P]>>
) -> &mut Self
[src]

Set pixel data.

pub fn with_raw_data(
    self,
    data: impl Into<Cow<'a, [u8]>>,
    format: Format
) -> Self
[src]

Set pixel data with manual format definition.

pub fn set_raw_data(
    &mut self,
    data: impl Into<Cow<'a, [u8]>>,
    format: Format
) -> &mut Self
[src]

Set pixel data with manual format definition.

pub fn with_data_width(self, data_width: u32) -> Self[src]

Set pixel data width.

pub fn set_data_width(&mut self, data_width: u32) -> &mut Self[src]

Set pixel data width.

pub fn with_data_height(self, data_height: u32) -> Self[src]

Set pixel data height.

pub fn set_data_height(&mut self, data_height: u32) -> &mut Self[src]

Set pixel data height.

pub fn with_mip_levels(self, mip_levels: MipLevels) -> Self[src]

Set number of generated or raw mip levels

pub fn set_mip_levels(&mut self, mip_levels: MipLevels) -> &mut Self[src]

Set number of generated or raw mip levels

pub fn with_kind(self, kind: Kind) -> Self[src]

Set image extent.

pub fn set_kind(&mut self, kind: Kind) -> &mut Self[src]

Set image kind.

pub fn with_view_kind(self, view_kind: ViewKind) -> Self[src]

With image view kind.

pub fn set_view_kind(&mut self, view_kind: ViewKind) -> &mut Self[src]

Set image view kind.

pub fn with_sampler_info(self, sampler_info: SamplerInfo) -> Self[src]

With image sampler info.

pub fn set_sampler_info(&mut self, sampler_info: SamplerInfo) -> &mut Self[src]

Set image sampler info.

pub fn with_swizzle(self, swizzle: Swizzle) -> Self[src]

With swizzle.

pub fn set_swizzle(&mut self, swizzle: Swizzle) -> &mut Self[src]

Set swizzle.

pub fn build<B>(
    &self,
    next_state: ImageState,
    factory: &'a mut Factory<B>
) -> Result<Texture<B>, Error> where
    B: Backend
[src]

Build texture.

Parameters

  • next_state: The next state that this texture will be used in. It will get transitioned to this state after uploading.
  • factory: Factory to use to build the texture

Trait Implementations

impl<'a> Clone for TextureBuilder<'a>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for TextureBuilder<'a>[src]

Auto Trait Implementations

impl<'a> Send for TextureBuilder<'a>

impl<'a> Unpin for TextureBuilder<'a>

impl<'a> Sync for TextureBuilder<'a>

impl<'a> UnwindSafe for TextureBuilder<'a>

impl<'a> RefUnwindSafe for TextureBuilder<'a>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Supports<T> for T[src]