ImageFormat RG3232F

book_4_sparkGenerated
code_blocksInput

Description

The RG3232F field is a member of the ImageFormat enumeration in the Sandbox namespace. This format represents a two-channel image format where each channel is a 32-bit floating-point value. It is typically used for high dynamic range (HDR) images or other applications where high precision is required for each channel.

Usage

Use ImageFormat.RG3232F when you need to work with images that require two channels with high precision floating-point values. This format is suitable for applications such as scientific imaging, HDR rendering, or any scenario where the precision of the image data is critical.

Example

// Example of using ImageFormat.RG3232F
Texture texture = new Texture();
texture.Format = ImageFormat.RG3232F;

// Load or manipulate the texture as needed
// Ensure that the source data matches the expected format