Texture3DBuilder WithFormat( ImageFormat format )

book_4_sparkGenerated
code_blocksInput

Description

The WithFormat method of the Texture3DBuilder class allows you to specify the image format for the 3D texture being built. This method is part of a fluent interface, enabling you to chain multiple configuration methods together to customize the texture before finalizing it with the Finish method.

Usage

To use the WithFormat method, call it on an instance of Texture3DBuilder and pass the desired ImageFormat as a parameter. This method returns the same Texture3DBuilder instance, allowing for method chaining.

Example

// Example of using WithFormat method
Texture3DBuilder builder = new Texture3DBuilder();
builder.WithSize(256, 256, 256)
       .WithFormat(ImageFormat.RGBA32)
       .WithMips(4);

Texture texture = builder.Finish();