X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=bigscreen%2Ffonts.h;h=6950168432abb4f0d6973f91ef5ba6776d50b8d3;hp=eb7b6fa6cde447ad0ae87bfa3e24545aef696730;hb=d4ec885cadcbcce077579bdd24c93ead18b06852;hpb=07c1b0a88317b59f0deee5ad5d3e4febd423acbc diff --git a/bigscreen/fonts.h b/bigscreen/fonts.h index eb7b6fa..6950168 100644 --- a/bigscreen/fonts.h +++ b/bigscreen/fonts.h @@ -5,21 +5,24 @@ #include FT_FREETYPE_H #include #include "widestring.h" +#include "design.h" struct TextDefer { widestring str; double size; unsigned xpos, ypos; + int r, g, b; + int rn, gn, bn; bool changed; }; void init_freetype(); void set_screen_size(unsigned width, unsigned height); -unsigned my_draw_text(const widestring &str, unsigned char *buf, double size, int xpos = 0, int ypos = 0, int r = 255, int g = 255, int b = 255); +unsigned my_draw_text(const widestring &str, unsigned char *buf, double size, int xpos = 0, int ypos = 0, int r = DATA_RED, int g = DATA_GREEN, int b = DATA_BLUE); // draw_all_deferred_text draws every string in current that is not the same in old, in red -void my_draw_text_deferred(std::vector &td, const widestring &str, double size, int xpos, int ypos); +void my_draw_text_deferred(std::vector &td, const widestring &str, double size, int xpos, int ypos, int r = DATA_RED, int g = DATA_GREEN, int b = DATA_BLUE, int rn = FRESH_DATA_RED, int gn = FRESH_DATA_GREEN, int bn = FRESH_DATA_BLUE); void draw_all_deferred_text(unsigned char *buf, std::vector ¤t, std::vector &old); #endif /* !defined(_FONTS_H) */