/* defs.h - Global definitions and constants. */ /* The default caption of the SDL2 window. */ #define PROJECT_NAME "SDL2 Sandbox" /* The size of the pixmap. */ #define RENDER_WIDTH 322 #define RENDER_HEIGHT 322 /* The SDL window size. */ #define WINDOW_WIDTH 966 #define WINDOW_HEIGHT 966 /* Maximum length of the log format screen, including the severity tag. */ #define LOG_LEN 160 /* How the color box things get displayed. */ #define BOX_SIZE 20 #define BOX_SPACING 2