Struct rps_sys::RpsSubresourceRange
source · #[repr(C)]pub struct RpsSubresourceRange {
pub baseMipLevel: u16,
pub mipLevels: u16,
pub baseArrayLayer: u32,
pub arrayLayers: u32,
}Expand description
Subsection of a resource from the graphics API perspective.
Fields§
§baseMipLevel: u16First mipmapping level accessible in the range.
mipLevels: u16Number of mipmap levels in the range.
baseArrayLayer: u32First layer accessible in the range.
arrayLayers: u32Number of array layers accessible in the range.
Trait Implementations§
source§impl Clone for RpsSubresourceRange
impl Clone for RpsSubresourceRange
source§fn clone(&self) -> RpsSubresourceRange
fn clone(&self) -> RpsSubresourceRange
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more