Provided by: libsdl3-doc_3.2.8+ds-1_all bug

NAME

       SDL_PixelFormatDetails - Details about the format of a pixel.

HEADER FILE

       Defined in SDL3/SDL_pixels.h

SYNOPSIS

       #include "SDL3/SDL.h"

       typedef struct SDL_PixelFormatDetails
       {
           SDL_PixelFormat format;
           Uint8 bits_per_pixel;
           Uint8 bytes_per_pixel;
           Uint8 padding[2];
           Uint32 Rmask;
           Uint32 Gmask;
           Uint32 Bmask;
           Uint32 Amask;
           Uint8 Rbits;
           Uint8 Gbits;
           Uint8 Bbits;
           Uint8 Abits;
           Uint8 Rshift;
           Uint8 Gshift;
           Uint8 Bshift;
           Uint8 Ashift;
       } SDL_PixelFormatDetails;

AVAILABILITY

       This struct is available since SDL 3.2.0.

Simple Directmedia Layer                            SDL 3.2.8                      SDL_PixelFormatDetails(3type)