Struct gfx::texture::Info
[−]
pub struct Info {
pub kind: Kind,
pub levels: u8,
pub format: SurfaceType,
pub bind: Bind,
pub usage: Usage,
}Texture storage descriptor.
Fields
kind: Kind
levels: u8
format: SurfaceType
bind: Bind
usage: Usage
Methods
impl Info
fn to_image_info(&self, mip: u8) -> ImageInfoCommon<()>
Get image info for a given mip.
fn to_raw_image_info(&self,
cty: ChannelType,
mip: u8)
-> ImageInfoCommon<Format>
cty: ChannelType,
mip: u8)
-> ImageInfoCommon<Format>
Get the raw image info for a given mip and a channel type.
Trait Implementations
impl PartialEq<Info> for Info
fn eq(&self, __arg_0: &Info) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Info) -> bool
This method tests for !=.
impl Clone for Info
fn clone(&self) -> Info
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Eq for Info
impl PartialOrd<Info> for Info
fn partial_cmp(&self, __arg_0: &Info) -> Option<Ordering>
fn lt(&self, __arg_0: &Info) -> bool
fn le(&self, __arg_0: &Info) -> bool
fn gt(&self, __arg_0: &Info) -> bool
fn ge(&self, __arg_0: &Info) -> bool
impl Copy for Info
impl Debug for Info
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.