TextureArrayBuilder WithScreenMultiSample()

book_4_sparkGenerated
code_blocksInput

Description

The WithScreenMultiSample method is a member of the TextureArrayBuilder class in the Sandbox namespace. This method configures the texture array to use the same multisampling settings as the screen. It is useful when you want the texture array to match the screen's multisampling configuration, ensuring consistency in rendering quality and performance.

Usage

To use the WithScreenMultiSample method, you need to have an instance of TextureArrayBuilder. Call this method on the instance to set the multisampling configuration to match the screen's settings. This method returns the same TextureArrayBuilder instance, allowing for method chaining.

Example

// Create a new TextureArrayBuilder instance
var textureArrayBuilder = new TextureArrayBuilder();

// Configure the texture array to use screen multisampling
textureArrayBuilder = textureArrayBuilder.WithScreenMultiSample();

// Continue configuring the texture array as needed
textureArrayBuilder = textureArrayBuilder.WithSize(1024, 1024)
                                         .WithFormat(ImageFormat.RGBA8)
                                         .WithCount(4);

// Finish building the texture array
Texture textureArray = textureArrayBuilder.Finish();