diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2020-11-19 00:09:04 +0100 |
---|---|---|
committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2020-11-19 00:09:04 +0100 |
commit | 808f7c46f1df9acaf8d00ebde7cb1925e1d27f94 (patch) | |
tree | d021c5b31e7145abe0565ad76cf3c065fbd3c8ac /src/render/Font.h | |
parent | more fixes to librw stuff (diff) | |
download | re3-808f7c46f1df9acaf8d00ebde7cb1925e1d27f94.tar re3-808f7c46f1df9acaf8d00ebde7cb1925e1d27f94.tar.gz re3-808f7c46f1df9acaf8d00ebde7cb1925e1d27f94.tar.bz2 re3-808f7c46f1df9acaf8d00ebde7cb1925e1d27f94.tar.lz re3-808f7c46f1df9acaf8d00ebde7cb1925e1d27f94.tar.xz re3-808f7c46f1df9acaf8d00ebde7cb1925e1d27f94.tar.zst re3-808f7c46f1df9acaf8d00ebde7cb1925e1d27f94.zip |
Diffstat (limited to '')
-rw-r--r-- | src/render/Font.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/render/Font.h b/src/render/Font.h index bf747859..7b67e310 100644 --- a/src/render/Font.h +++ b/src/render/Font.h @@ -116,6 +116,10 @@ public: static void InitPerFrame(void); static void PrintChar(float x, float y, wchar c); static void PrintString(float x, float y, wchar *s); +#ifdef XBOX_SUBTITLES + static void PrintStringFromBottom(float x, float y, wchar *str); + static void PrintOutlinedString(float x, float y, wchar *str, float outlineStrength, bool fromBottom, CRGBA outlineColor); +#endif static int GetNumberLines(float xstart, float ystart, wchar *s); static void GetTextRect(CRect *rect, float xstart, float ystart, wchar *s); #ifdef MORE_LANGUAGES |