logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_IMAGE_VERSION_ATLEAST - This macro will evaluate to true if compiled with SDL_image at least X.Y.Z.

Header File

       Defined in SDL3_image/SDL_image.h

Name

       SDL_IMAGE_VERSION_ATLEAST - This macro will evaluate to true if compiled with SDL_image at least X.Y.Z.

Synopsis

#include"SDL3_image/SDL_image.h"#defineSDL_IMAGE_VERSION_ATLEAST(X,Y,Z).BI((SDL_IMAGE_MAJOR_VERSION>=X)&&.BI(SDL_IMAGE_MAJOR_VERSION>X||SDL_IMAGE_MINOR_VERSION>=Y)&&.BI(SDL_IMAGE_MAJOR_VERSION>X||SDL_IMAGE_MINOR_VERSION>Y||SDL_IMAGE_MICRO_VERSION>=Z))

SDL_image                                        SDL_image 3.2.4                    SDL_IMAGE_VERSION_ATLEAST(3)

See Also