table of contents
other versions
- experimental 3~git20241102~f20defe+ds-1
SDL_TTF_VERSION_ATLEAST(3) | SDL_ttf3 FUNCTIONS | SDL_TTF_VERSION_ATLEAST(3) |
NAME¶
SDL_TTF_VERSION_ATLEAST - This macro will evaluate to true if compiled with SDL_ttf at least X.Y.Z.
HEADER FILE¶
Defined in SDL3_ttf/SDL_ttf.h
SYNOPSIS¶
#include "SDL3_ttf/SDL_ttf.h"
#define SDL_TTF_VERSION_ATLEAST(X, Y, Z) .BI ((SDL_TTF_MAJOR_VERSION>=X)&&.BI (SDL_TTF_MAJOR_VERSION > X || SDL_TTF_MINOR_VERSION >= Y) && .BI (SDL_TTF_MAJOR_VERSION>X||SDL_TTF_MINOR_VERSION>Y||SDL_TTF_MICRO_VERSION>=Z))
SDL_ttf 3.0.0 | SDL_ttf |