Description
The WithGPUOnlyUsage
method is part of the TextureCubeBuilder
class in the Sandbox namespace. This method configures the texture cube to be used exclusively on the GPU, meaning it will not be accessible from the CPU. This can be beneficial for performance in scenarios where CPU access is not required, as it may reduce memory overhead and improve rendering efficiency.
Usage
To use the WithGPUOnlyUsage
method, you must first create an instance of TextureCubeBuilder
. Once you have the builder instance, you can chain this method to configure the texture cube for GPU-only usage. After setting all desired configurations, call the Finish
method to create the texture.
Example
// Create a new TextureCubeBuilder instance
TextureCubeBuilder builder = new TextureCubeBuilder();
// Configure the texture cube for GPU-only usage
builder = builder.WithGPUOnlyUsage();
// Finalize the texture creation
Texture texture = builder.Finish();