Description
The WithStaticUsage
method is part of the Texture2DBuilder
class in the Sandbox namespace. This method configures the texture to be optimized for static usage. Static usage is ideal for textures that do not change frequently and can be optimized for performance by the graphics hardware.
Usage
Use the WithStaticUsage
method when you are building a texture that will not change often, such as a background image or a texture that is loaded once and used throughout the application without modification. This method is part of a fluent interface, allowing you to chain multiple configuration methods together before finalizing the texture with the Finish
method.
Example
// Example of using WithStaticUsage in a Texture2DBuilder
Texture2DBuilder builder = new Texture2DBuilder();
Texture texture = builder
.WithSize(1024, 1024)
.WithFormat(ImageFormat.RGBA8)
.WithStaticUsage()
.Finish();
// The texture is now optimized for static usage.