driver/fontrenderer: let RenderString() and getRenderWidth() default to UTF8

This commit is contained in:
martii
2014-06-11 10:26:26 +02:00
committed by svenhoefer
parent 2047b51780
commit bec2e87412
3 changed files with 7 additions and 7 deletions

View File

@@ -44,7 +44,7 @@ class CFBWindow
void paintBoxRel(const int _x, const int _y, const int _dx, const int _dy, const color_t _col, int radius = 0, int type = 0xF);
bool paintIcon(const char * const _filename, const int _x, const int _y, const int _h = 0, const color_t _offset = 1);
void RenderString(const font_t _font, const int _x, const int _y, const int _width, const char * const _text, const color_t _color, const int _boxheight = 0, const bool _utf8_encoded = false);
void RenderString(const font_t _font, const int _x, const int _y, const int _width, const char * const _text, const color_t _color, const int _boxheight = 0, const unsigned int _flags = Font::IS_UTF8);
};
#endif /* __fb_window_h__ */