diff options
author | Chris Xiong <chirs241097@gmail.com> | 2016-05-11 23:39:10 +0800 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2016-05-11 23:39:10 +0800 |
commit | 08c898f79acd024718b071f0d08eb32f3f093cbd (patch) | |
tree | 650b848816d32bb35215f5dd5f1d4b46bd44c049 /include | |
parent | ff69c72b15d00e80455d3122629840a55e464c86 (diff) | |
download | SMELT-08c898f79acd024718b071f0d08eb32f3f093cbd.tar.xz |
Allow truetype fonts to be rendered at arbitrary Z coordinates.
Diffstat (limited to 'include')
-rw-r--r-- | include/smttfont.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/smttfont.hpp b/include/smttfont.hpp index 0f87b1c..0d90179 100644 --- a/include/smttfont.hpp +++ b/include/smttfont.hpp @@ -33,7 +33,7 @@ public: float h(){return (float)_h;} void free(); bool setChar(wchar_t c,FT_Face ttface); - void render(float x,float y,DWORD col); + void render(float x,float y,float z,DWORD col); }; class smTTFont @@ -52,7 +52,7 @@ public: float getWidth(){return w;} float getHeight(){return h;} void updateString(const wchar_t *format,...); - void render(float x,float y,DWORD col,int align); + void render(float x,float y,float z,DWORD col,int align); DWORD getCacheSize(); void clearCache(); }; |