Description
The WithStaticUsage
method is a member of the Texture3DBuilder
class in the Sandbox namespace. This method configures the texture to be used with static usage, which is typically optimized for textures that do not change frequently. This can improve performance by allowing the graphics hardware to optimize the storage and access patterns for the texture data.
Usage
To use the WithStaticUsage
method, you need to have an instance of Texture3DBuilder
. Call this method on the instance to set the texture usage to static. This method returns the same Texture3DBuilder
instance, allowing for method chaining.
Example
// Example of using WithStaticUsage
Texture3DBuilder builder = new Texture3DBuilder();
builder.WithStaticUsage();
Texture texture = builder.Finish();
// The texture is now configured with static usage.