Description
The WithMultiSample6X
method is a member of the TextureArrayBuilder
class in the Sandbox namespace. This method configures the texture array to use 6x multisampling, which is a technique used to improve the quality of rendered images by reducing aliasing effects. Multisampling achieves this by sampling a pixel multiple times at different sample points and averaging the results.
Usage
To use the WithMultiSample6X
method, you must first create an instance of the TextureArrayBuilder
class. Then, call the WithMultiSample6X
method on this instance to set the multisampling level to 6x. This method returns the same TextureArrayBuilder
instance, allowing for method chaining to configure additional properties of the texture array.
Example
// Example of using WithMultiSample6X
TextureArrayBuilder builder = new TextureArrayBuilder();
builder.WithSize(1024, 1024)
.WithFormat(ImageFormat.RGBA8)
.WithMultiSample6X()
.WithCount(4);
Texture textureArray = builder.Finish();
// The texture array is now configured with 6x multisampling.