#ifndef _CPU_DISPLAY_H #define _CPU_DISPLAY_H #include #include #include #include #include #include #include #define CPU_STATS_DISPLAY_WIDTH 640 #define CPU_STATS_DISPLAY_HEIGHT 480 #define CPU_STATS_DISPLAY_COLUMN_COUNT 40 #define CPU_STATS_DISPLAY_ROW_COUNT 30 static const char *cpu_display_header_text = "CPU State"; void renderStatsBox(SDL_Renderer *, TTF_Font *, char *); void renderBorderAndHeader(SDL_Renderer *, TTF_Font *); #endif