Interface GPUExtent3DDictStrict
interface GPUExtent3DDictStrict {
depth?: undefined;
depthOrArrayLayers?: number;
height?: number;
width: number;
}
depth?: undefined;
depthOrArrayLayers?: number;
height?: number;
width: number;
}
Hierarchy
- GPUExtent3DDict
- GPUExtent3DDictStrict (view full)
Index
Properties
Properties
Optional
depth
depth?: undefined
Optional
depthOrArrayLayers
depthOrArrayLayers ?: number
The depth of the extent or the number of array layers it contains. If used with a GPUTexture with a GPUTextureDimension of GPUTextureDimension#"3d" defines the depth of the texture. If used with a GPUTexture with a GPUTextureDimension of GPUTextureDimension#"2d" defines the number of array layers in the texture.
Optional
height
height?: number
The height of the extent.
width
width: number
The width of the extent.
Deprecated
The correct name is
depthOrArrayLayers
.