Description
The WithSize
method of the Texture3DBuilder
class allows you to specify the dimensions of a 3D texture. This method is essential for defining the size of the texture in terms of width, height, and depth, which are crucial for the texture's allocation and usage in 3D rendering.
Usage
To use the WithSize
method, you need to provide three integer parameters: width
, height
, and depth
. These parameters define the dimensions of the 3D texture you are building. This method returns the Texture3DBuilder
instance, allowing for method chaining to further configure the texture.
Example
// Example of using the WithSize method
Texture3DBuilder builder = new Texture3DBuilder();
builder.WithSize(256, 256, 256)
.WithFormat(ImageFormat.RGBA8)
.WithMips(1);
Texture texture = builder.Finish();
// The texture is now created with the specified size and format.