[][src]Struct glium_graphics::Texture

pub struct Texture(pub SrgbTexture2d, pub [SamplerWrapFunction; 2]);

Wrapper for 2D texture.

Implementations

impl Texture[src]

pub fn new(texture: SrgbTexture2d) -> Texture[src]

Creates a new Texture.

pub fn empty<F>(factory: &mut F) -> Result<Self, TextureCreationError> where
    F: Facade
[src]

Returns empty texture.

pub fn from_path<F, P>(
    factory: &mut F,
    path: P,
    flip: Flip,
    settings: &TextureSettings
) -> Result<Self, String> where
    F: Facade,
    P: AsRef<Path>, 
[src]

Creates a texture from path.

pub fn from_image<F>(
    factory: &mut F,
    img: &RgbaImage,
    settings: &TextureSettings
) -> Result<Self, TextureCreationError> where
    F: Facade
[src]

Creates a texture from image.

pub fn from_memory_alpha<F>(
    factory: &mut F,
    buffer: &[u8],
    width: u32,
    height: u32,
    settings: &TextureSettings
) -> Result<Self, TextureCreationError> where
    F: Facade
[src]

Creates texture from memory alpha.

pub fn update<F>(
    &mut self,
    factory: &mut F,
    img: &RgbaImage
) -> Result<(), TextureCreationError> where
    F: Facade
[src]

Updates texture with an image.

Trait Implementations

impl<F> CreateTexture<F> for Texture where
    F: Facade
[src]

impl ImageSize for Texture[src]

impl<F> TextureOp<F> for Texture[src]

type Error = TextureCreationError

The error when performing an operation.

impl<F> UpdateTexture<F> for Texture where
    F: Facade
[src]

Auto Trait Implementations

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> From<T> for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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.