Description
The BGRA1010102
field is a member of the ImageFormat
enumeration in the Sandbox namespace. This format represents an image with a 10-bit per channel color depth for the blue, green, and red channels, and a 2-bit alpha channel. This format is useful for high dynamic range (HDR) imaging, where a greater range of color values is needed.
Usage
Use the BGRA1010102
format when you need to work with images that require high color precision and a small alpha channel. This format is particularly suitable for applications that involve HDR rendering or require precise color representation.
Example
// Example of using ImageFormat.BGRA1010102
public void SetImageFormat()
{
ImageFormat format = ImageFormat.BGRA1010102;
// Use the format in your image processing or rendering logic
}