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 TextureThe texture to be copied to/from.
mip_level: u32The target mip level of the texture.
origin: Origin3dThe base texel of the texture in the selected mip_level.
aspect: TextureAspectThe copy aspect.
color_space: PredefinedColorSpaceThe color space of this texture.
premultiplied_alpha: boolThe premultiplication of this texture