Texture2DBuilder WithGPUOnlyUsage()

book_4_sparkGenerated
code_blocksInput

Description

The WithGPUOnlyUsage method is part of the Texture2DBuilder class in the Sandbox API. This method configures the texture 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 the texture is only needed for rendering and not for any CPU-side operations.

Usage

To use the WithGPUOnlyUsage method, you should first create an instance of Texture2DBuilder. Then, call the WithGPUOnlyUsage method on this instance to set the texture usage to GPU-only. Finally, use the Finish method to create the texture.

Example

// Create a new Texture2DBuilder instance
Texture2DBuilder builder = new Texture2DBuilder();

// Configure the texture to be GPU-only
builder.WithGPUOnlyUsage();

// Finalize and create the texture
Texture texture = builder.Finish();