diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-04-05 11:45:30 +0200 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-04-05 11:45:30 +0200 |
commit | 5cbcaa57d7160fc4e20254fcedfec3609e8521ef (patch) | |
tree | 000c9de98a1a8c06c0dfb08d355310dc73753cb9 /src/render/Font.h | |
parent | shoreside garage fix (diff) | |
parent | Merge pull request #377 from Fire-Head/master (diff) | |
download | re3-5cbcaa57d7160fc4e20254fcedfec3609e8521ef.tar re3-5cbcaa57d7160fc4e20254fcedfec3609e8521ef.tar.gz re3-5cbcaa57d7160fc4e20254fcedfec3609e8521ef.tar.bz2 re3-5cbcaa57d7160fc4e20254fcedfec3609e8521ef.tar.lz re3-5cbcaa57d7160fc4e20254fcedfec3609e8521ef.tar.xz re3-5cbcaa57d7160fc4e20254fcedfec3609e8521ef.tar.zst re3-5cbcaa57d7160fc4e20254fcedfec3609e8521ef.zip |
Diffstat (limited to '')
-rw-r--r-- | src/render/Font.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/render/Font.h b/src/render/Font.h index 26309377..0659dda1 100644 --- a/src/render/Font.h +++ b/src/render/Font.h @@ -64,18 +64,18 @@ public: static void Initialise(void); static void Shutdown(void); static void InitPerFrame(void); - static void PrintChar(float x, float y, uint16 c); - static void PrintString(float x, float y, uint16 *s); - static int GetNumberLines(float xstart, float ystart, uint16 *s); - static void GetTextRect(CRect *rect, float xstart, float ystart, uint16 *s); - static void PrintString(float x, float y, uint16 *start, uint16 *end, float spwidth); - static float GetCharacterWidth(uint16 c); - static float GetCharacterSize(uint16 c); - static float GetStringWidth(uint16 *s, bool spaces = false); - static uint16 *GetNextSpace(uint16 *s); - static uint16 *ParseToken(uint16 *s, uint16*); + static void PrintChar(float x, float y, wchar c); + static void PrintString(float x, float y, wchar *s); + static int GetNumberLines(float xstart, float ystart, wchar *s); + static void GetTextRect(CRect *rect, float xstart, float ystart, wchar *s); + static void PrintString(float x, float y, wchar *start, wchar *end, float spwidth); + static float GetCharacterWidth(wchar c); + static float GetCharacterSize(wchar c); + static float GetStringWidth(wchar *s, bool spaces = false); + static wchar *GetNextSpace(wchar *s); + static wchar *ParseToken(wchar *s, wchar*); static void DrawFonts(void); - static uint16 character_code(uint8 c); + static wchar character_code(uint8 c); static CFontDetails GetDetails() { return Details; } static void SetScale(float x, float y) { Details.scaleX = x; Details.scaleY = y; } |