Description
The RGBA32323232F
field is a member of the ImageFormat
enumeration in the Sandbox namespace. This format represents a high-precision image format with 32 bits per channel for red, green, blue, and alpha, using floating-point values. This format is suitable for applications requiring high dynamic range (HDR) imaging or precise color representation.
Usage
Use ImageFormat.RGBA32323232F
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 where color accuracy and detail are critical, such as in professional photo editing, scientific visualization, or advanced graphics rendering.
Example
// Example of using ImageFormat.RGBA32323232F
// Assume we have a method to create a texture with a specific format
Texture texture = Texture.Create( width: 1024, height: 1024, format: ImageFormat.RGBA32323232F );
// Use the texture in a scene or for rendering
Scene.AddTexture(texture);