[−][src]Struct three_d::core::texture::Texture2D
Fields
width: usizeheight: usizeImplementations
impl Texture2D[src]
pub fn new(
gl: &Gl,
width: usize,
height: usize,
min_filter: Interpolation,
mag_filter: Interpolation,
mip_map_filter: Option<Interpolation>,
wrap_s: Wrapping,
wrap_t: Wrapping,
format: Format
) -> Result<Texture2D, Error>[src]
gl: &Gl,
width: usize,
height: usize,
min_filter: Interpolation,
mag_filter: Interpolation,
mip_map_filter: Option<Interpolation>,
wrap_s: Wrapping,
wrap_t: Wrapping,
format: Format
) -> Result<Texture2D, Error>
pub fn new_with_u8(
gl: &Gl,
min_filter: Interpolation,
mag_filter: Interpolation,
mip_map_filter: Option<Interpolation>,
wrap_s: Wrapping,
wrap_t: Wrapping,
image: &Image
) -> Result<Texture2D, Error>[src]
gl: &Gl,
min_filter: Interpolation,
mag_filter: Interpolation,
mip_map_filter: Option<Interpolation>,
wrap_s: Wrapping,
wrap_t: Wrapping,
image: &Image
) -> Result<Texture2D, Error>
pub fn fill_with_u8(&mut self, data: &[u8]) -> Result<(), Error>[src]
pub fn fill_with_f32(&mut self, data: &[f32]) -> Result<(), Error>[src]
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Texture2D[src]
impl !Send for Texture2D[src]
impl !Sync for Texture2D[src]
impl Unpin for Texture2D[src]
impl UnwindSafe for Texture2D[src]
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,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Erased for T
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.
pub 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>,