pub struct Texture {
pub width: u32,
pub height: u32,
pub slot: u32,
/* private fields */
}
Expand description
A Texture
stores an Image that can be used while rendering, or to store data.
Fields§
§width: u32
Width of the Texture
.
height: u32
Height of the Texture
.
slot: u32
Slot the Texture
will occupy.
Implementations§
Source§impl Texture
impl Texture
Sourcepub fn new(gl: &GL, image: &HtmlImageElement) -> Self
pub fn new(gl: &GL, image: &HtmlImageElement) -> Self
Create a new Texture
using an HtmlImageElement
.
Sourcepub fn new_with_element_id(gl: &GL, image_src: &str) -> Self
pub fn new_with_element_id(gl: &GL, image_src: &str) -> Self
Create a new Texture
from an HtmlImageElement
with an given element ID.
Sourcepub fn new_with_texture_id(gl: &GL, count: u32) -> Self
pub fn new_with_texture_id(gl: &GL, count: u32) -> Self
Create a new Texture
from an HtmlImageElement
with an element ID in the format textureXX where XX is a number.
Sourcepub fn checkerboard(gl: &GL) -> Self
pub fn checkerboard(gl: &GL) -> Self
A black and white checkerboard Texture
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Texture
impl RefUnwindSafe for Texture
impl !Send for Texture
impl !Sync for Texture
impl Unpin for Texture
impl UnwindSafe for Texture
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.