table of contents
other versions
- trixie 3.2.10+ds-1
- testing 3.4.0+ds-1
- unstable 3.4.0+ds-1
- experimental 3.4.0+git20260203~8107d5b+ds-1
| SDL_ColorRange(3type) | SDL3 DATATYPES | SDL_ColorRange(3type) |
NAME¶
SDL_ColorRange - Colorspace color range, as described by https://www.itu.int/rec/R-REC-BT.2100-2-201807-I/en
SYNOPSIS¶
#include <SDL3/SDL_pixels.h>
typedef enum SDL_ColorRange
{
SDL_COLOR_RANGE_UNKNOWN = 0,
SDL_COLOR_RANGE_LIMITED = 1, /**< Narrow range, e.g. 16-235 for 8-bit RGB and luma, and 16-240 for 8-bit chroma */
SDL_COLOR_RANGE_FULL = 2 /**< Full range, e.g. 0-255 for 8-bit RGB and luma, and 1-255 for 8-bit chroma */
} SDL_ColorRange;
AVAILABILITY¶
This enum is available since SDL 3.2.0.
| SDL 3.2.30 | Simple Directmedia Layer |