Type Alias wgpu::ImageCopyTextureTagged
source · pub type ImageCopyTextureTagged<'a> = ImageCopyTextureTaggedBase<&'a Texture>;
Expand description
View of a texture which can be used to copy to a texture, including color space and alpha premultiplication information.
Corresponds to WebGPU GPUImageCopyTextureTagged
.
Aliased Type§
struct ImageCopyTextureTagged<'a> {
pub texture: &'a Texture,
pub mip_level: u32,
pub origin: Origin3d,
pub aspect: TextureAspect,
pub color_space: PredefinedColorSpace,
pub premultiplied_alpha: bool,
}
Fields§
§texture: &'a Texture
The texture to be copied to/from.
mip_level: u32
The target mip level of the texture.
origin: Origin3d
The base texel of the texture in the selected mip_level
.
aspect: TextureAspect
The copy aspect.
color_space: PredefinedColorSpace
The color space of this texture.
premultiplied_alpha: bool
The premultiplication of this texture