A macro for defining custom FourCC pixel formats.
Defined in <SDL3/SDL_pixels.h>
#define SDL_DEFINE_PIXELFOURCC(A, B, C, D) SDL_FOURCC(A, B, C, D)
A | the first character of the FourCC code. |
B | the second character of the FourCC code. |
C | the third character of the FourCC code. |
D | the fourth character of the FourCC code. |
Returns a format value in the style of SDL_PixelFormat.
For example, defining SDL_PIXELFORMAT_YV12 looks like this:
'Y', 'V', '1', '2') SDL_DEFINE_PIXELFOURCC(
It is safe to call this macro from any thread.
This macro is available since SDL 3.1.3.