nn::y2r::CTR::OutputFormat Enumerated Typeenum OutputFormat;
| Value | Description |
|---|---|
OUTPUT_RGB_32 |
RGB 32-bit (RGB=888, Alpha=8) |
OUTPUT_RGB_24 |
RGB 24-bit (RGB=888) |
OUTPUT_RGB_16_555 |
RGB 16-bit (RGB=555, Alpha=1) |
OUTPUT_RGB_16_565 |
RGB 16-bit (RGB=565) |
Enumerated type that indicates the output pixel format.
The output data formats are as follows.
RGB 16-bit (RGB=555, Alpha=1)
| Bits 31-27 | Bits 26-22 | Bits 21-17 | Bit 16 | Bits 15-11 | Bits 10-6 | Bits 5-1 | Bit 0 |
| R (n+1) | G (n+1) | B (n+1) | A[7] | R (n) | G (n) | B (n) | A[7] |
RGB 16-bit (RGB=565)
| Bits 31-27 | Bits 26-21 | Bits 20-16 | Bits 15-11 | Bits 10-5 | Bits 4-0 |
| R (n+1) | G (n+1) | B (n+1) | R (n) | G (n) | B (n) |
RGB 24-bit (RGB=888)
| Bits 31-24 | Bits 23-16 | Bits 15-8 | Bits 7-0 |
| B (n+1) | R (n) | G (n) | B (n) |
RGB 32-bit (RGB=888, Alpha=8)
| Bits 31-24 | Bits 23-16 | Bits 15-8 | Bits 7-0 |
| R (n) | G (n) | B (n) | A[7:0] |
CONFIDENTIAL