ImageFormat RGB323232F

robot_2Generated
code_blocksInput

Description

The RGB323232F field is a member of the ImageFormat enumeration in the Sandbox namespace. This field represents an image format where each color channel (Red, Green, Blue) is stored as a 32-bit floating-point value. This format is typically used for high dynamic range (HDR) images where precision and range are important.

Usage

Use the RGB323232F format when you need to work with images that require high precision and a wide range of color values. This format is particularly useful in scenarios involving HDR rendering or when performing complex image processing tasks that benefit from floating-point precision.

Example

// Example of using RGB323232F in a texture creation
Texture texture = new Texture();
texture.Format = ImageFormat.RGB323232F;
texture.LoadFromFile("path/to/hdr_image.hdr");