Texture3DBuilder WithGPUOnlyUsage()

book_4_sparkGenerated
code_blocksInput

Description

The WithGPUOnlyUsage method is a configuration option for the Texture3DBuilder class. It specifies that the texture being built will be used exclusively on the GPU, without any CPU access. This can optimize performance by reducing the overhead associated with CPU-GPU data transfers.

Usage

Use the WithGPUOnlyUsage method when you are certain that the texture will only be accessed by the GPU. This is particularly useful for textures that are generated or manipulated entirely on the GPU, such as those used in complex shaders or compute operations.

Example

// Example of using WithGPUOnlyUsage in a Texture3DBuilder
Texture3DBuilder builder = new Texture3DBuilder();
builder.WithSize(256, 256, 256)
       .WithFormat(ImageFormat.RGBA8)
       .WithGPUOnlyUsage();

Texture texture = builder.Finish();
// The texture is now configured for GPU-only usage.