Description
The WithStaticUsage
method is part of the TextureCubeBuilder
class in the Sandbox namespace. This method configures the texture cube to use a static usage pattern. Static usage is typically used for textures that do not change often and are primarily read from, rather than written to, by the GPU. This can optimize performance by allowing the GPU to make certain assumptions about the texture's usage.
Usage
To use the WithStaticUsage
method, you must first create an instance of TextureCubeBuilder
. Once you have the builder instance, you can chain the WithStaticUsage
method to configure the texture cube for static usage. This method returns the same TextureCubeBuilder
instance, allowing for method chaining to further configure the texture cube.
Example
// Create a new TextureCubeBuilder instance
TextureCubeBuilder builder = new TextureCubeBuilder();
// Configure the texture cube for static usage
builder = builder.WithStaticUsage();
// Continue configuring the texture cube as needed
// ...
// Finally, build the texture
Texture texture = builder.Finish();