Texture3DBuilder WithDynamicUsage()

book_4_sparkGenerated
code_blocksInput

Description

The WithDynamicUsage method is part of the Texture3DBuilder class in the Sandbox namespace. This method configures the texture to be created with dynamic usage, which is suitable for textures that will be updated frequently. Using dynamic usage can improve performance for textures that change often, as it allows the graphics driver to optimize memory usage and access patterns.

Usage

To use the WithDynamicUsage method, call it on an instance of Texture3DBuilder before finalizing the texture creation with the Finish method. This method does not take any parameters and returns the Texture3DBuilder instance, allowing for method chaining.

Example

// Example of using WithDynamicUsage in a Texture3DBuilder
Texture3DBuilder builder = new Texture3DBuilder();
Texture texture = builder
    .WithSize(256, 256, 256)
    .WithFormat(ImageFormat.RGBA8)
    .WithDynamicUsage()
    .Finish();

// The texture is now created with dynamic usage, suitable for frequent updates.